diff --git a/cmd/worker/__debug_bin.exe1068760645 b/cmd/worker/__debug_bin.exe1068760645 deleted file mode 100644 index 8c33a7d..0000000 Binary files a/cmd/worker/__debug_bin.exe1068760645 and /dev/null differ diff --git a/cmd/worker/__debug_bin.exe1835124629 b/cmd/worker/__debug_bin.exe1835124629 deleted file mode 100644 index 8c33a7d..0000000 Binary files a/cmd/worker/__debug_bin.exe1835124629 and /dev/null differ diff --git a/cmd/worker/__debug_bin.exe4056734935 b/cmd/worker/__debug_bin.exe4056734935 deleted file mode 100644 index 8c33a7d..0000000 Binary files a/cmd/worker/__debug_bin.exe4056734935 and /dev/null differ diff --git a/cmd/worker/__debug_bin.exe438186156 b/cmd/worker/__debug_bin.exe438186156 deleted file mode 100644 index 8c33a7d..0000000 Binary files a/cmd/worker/__debug_bin.exe438186156 and /dev/null differ diff --git a/internal/domains/api/services/processors/dwbg/dwbg9fb2_processor.go b/internal/domains/api/services/processors/dwbg/dwbg9fb2_processor.go index 2d0af1c..a413a10 100644 --- a/internal/domains/api/services/processors/dwbg/dwbg9fb2_processor.go +++ b/internal/domains/api/services/processors/dwbg/dwbg9fb2_processor.go @@ -40,6 +40,13 @@ func ProcessDWBG9FB2Request(ctx context.Context, params []byte, deps *processors return nil, errors.Join(processors.ErrSystem, err) } + if respMap, ok := resp.Data.(map[string]interface{}); ok { + delete(respMap, "reportUrl") + if resultMap, ok := respMap["result"].(map[string]interface{}); ok { + delete(resultMap, "reportUrl") + } + } + respBytes, err := json.Marshal(resp.Data) if err != nil { return nil, errors.Join(processors.ErrSystem, err) diff --git a/internal/domains/api/services/processors/dwbg/dwbg9fb3_processor.go b/internal/domains/api/services/processors/dwbg/dwbg9fb3_processor.go index da64038..2687faa 100644 --- a/internal/domains/api/services/processors/dwbg/dwbg9fb3_processor.go +++ b/internal/domains/api/services/processors/dwbg/dwbg9fb3_processor.go @@ -40,6 +40,13 @@ func ProcessDWBG9FB3Request(ctx context.Context, params []byte, deps *processors return nil, errors.Join(processors.ErrSystem, err) } + if respMap, ok := resp.Data.(map[string]interface{}); ok { + delete(respMap, "reportUrl") + if resultMap, ok := respMap["result"].(map[string]interface{}); ok { + delete(resultMap, "reportUrl") + } + } + respBytes, err := json.Marshal(resp.Data) if err != nil { return nil, errors.Join(processors.ErrSystem, err) diff --git a/internal/domains/api/services/processors/flxg/flxghb4f_processor.go b/internal/domains/api/services/processors/flxg/flxghb4f_processor.go index 4734d2c..4984ae0 100644 --- a/internal/domains/api/services/processors/flxg/flxghb4f_processor.go +++ b/internal/domains/api/services/processors/flxg/flxghb4f_processor.go @@ -11,7 +11,6 @@ import ( ) // 去掉身份证去掉身份证 - // ProcessFLXGHB4FRequest FLXGHB4F API处理方法 - 个人涉诉案件查询(海宇API) func ProcessFLXGHB4FRequest(ctx context.Context, params []byte, deps *processors.ProcessorDependencies) ([]byte, error) { var paramsDto dto.FLXGHB4FReq