fix ivyz3p9m

This commit is contained in:
2025-11-19 13:41:41 +08:00
parent 604174cce7
commit 15d0759cfb
7 changed files with 459 additions and 4 deletions

View File

@@ -31,9 +31,16 @@ func ProcessIVYZ3P9MRequest(ctx context.Context, params []byte, deps *processors
return nil, errors.Join(processors.ErrSystem, err)
}
// 处理 returnType 参数,默认为 "1"
returnType := paramsDto.ReturnType
if returnType == "" {
returnType = "1"
}
reqData := map[string]interface{}{
"realName": encryptedName,
"certCode": encryptedCertCode,
"realName": encryptedName,
"certCode": encryptedCertCode,
"returnType": returnType,
}
respData, err := deps.MuziService.CallAPI(ctx, "PC0041", reqData)