This commit is contained in:
2026-03-10 17:56:31 +08:00
parent 6b80182986
commit a00fe12141
3 changed files with 6 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ import (
// 然后复用 qyglj1u9_processor_build.go 中的 buildReport / map* 逻辑生成企业报告结构
func ProcessQYGLJ1U9Request(ctx context.Context, params []byte, deps *processors.ProcessorDependencies) ([]byte, error) {
// 复用 QYGLUY3S 的入参结构:企业名称/注册号/统一社会信用代码
var p dto.QYGLUY3SReq
var p dto.QYGLJ1U9Req
if err := json.Unmarshal(params, &p); err != nil {
return nil, errors.Join(processors.ErrSystem, err)
}
@@ -63,7 +63,6 @@ func ProcessQYGLJ1U9Request(ctx context.Context, params []byte, deps *processors
// 企业全量信息核验V2QYGLUY3S
call("jiguangFull", map[string]interface{}{
"ent_name": p.EntName,
"ent_reg_no": p.EntRegno,
"ent_code": p.EntCode,
}, ProcessQYGLUY3SRequest)