This commit is contained in:
Mrx
2026-01-28 16:25:40 +08:00
parent 482644a914
commit 7e5a69ffaa
4 changed files with 6 additions and 6 deletions

View File

@@ -10,10 +10,10 @@ import (
"tyapi-server/internal/infrastructure/external/zhicha"
)
// ProcessQYGL5S1Request QYGL5S1 API处理方法 - 企业司法涉诉V2
func ProcessQYGL5S1Request(ctx context.Context, params []byte, deps *processors.ProcessorDependencies) ([]byte, error) {
// ProcessQYGL5S1IReq QYGL5S1I API处理方法 - 企业司法涉诉V2
func ProcessQYGL5S1IRequest(ctx context.Context, params []byte, deps *processors.ProcessorDependencies) ([]byte, error) {
var paramsDto dto.QYGL5S1Req
var paramsDto dto.QYGL5S1IReq
if err := json.Unmarshal(params, &paramsDto); err != nil {
return nil, errors.Join(processors.ErrSystem, err)
}