This commit is contained in:
Mrx
2026-05-29 20:13:12 +08:00
parent 2a174e49e5
commit 4b1176b1e3
17 changed files with 31 additions and 16 deletions

View File

@@ -45,7 +45,7 @@ func ProcessFLXG5A3BRequest(ctx context.Context, params []byte, deps *processors
rawData, ok := resp.Data.(map[string]interface{})
if !ok {
return nil, errors.Join(processors.ErrSystem, errors.New("响应格式错误"))
return processors.MarshalRawResponse(resp.Data)
}
result := mapNuoerPersonalLawsuitToResponse(rawData)

View File

@@ -51,7 +51,7 @@ func ProcessFLXG7E8FRequest(ctx context.Context, params []byte, deps *processors
respMap, ok := respData.(map[string]interface{})
if !ok {
return nil, errors.Join(processors.ErrSystem, errors.New("响应格式错误"))
return processors.MarshalRawResponse(respData)
}
result := map[string]interface{}{

View File

@@ -45,7 +45,7 @@ func ProcessFLXGDEA9Request(ctx context.Context, params []byte, deps *processors
rawData, ok := resp.Data.(map[string]interface{})
if !ok {
return nil, errors.Join(processors.ErrSystem, errors.New("响应格式错误"))
return processors.MarshalRawResponse(resp.Data)
}
result := mapNuoerIdRiskToResponse(rawData)