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

@@ -43,7 +43,7 @@ func ProcessJRZQ1D09Request(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 := mapNuoerLoanRiskTagV18ToResponse(rawData)

View File

@@ -43,7 +43,7 @@ func ProcessJRZQ2F8ARequest(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 := mapNuoerLoanRiskTagV9ToResponse(rawData)

View File

@@ -43,7 +43,7 @@ func ProcessJRZQ3C7BRequest(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 := mapNuoerApplyLoanToResponse(rawData)

View File

@@ -42,7 +42,7 @@ func ProcessJRZQ4B6CRequest(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 := mapNuoerLoanRiskTagV10ToResponse(rawData)

View File

@@ -43,7 +43,7 @@ func ProcessJRZQ5E9FRequest(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 := mapNuoerLoanRiskToResponse(rawData)

View File

@@ -55,7 +55,7 @@ func ProcessJRZQ6F2ARequest(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 := mapJRZQ3C7BToJRZQ6F2A(respMap)

View File

@@ -43,7 +43,7 @@ func ProcessJRZQ7F1ARequest(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 := mapNuoerLoanRiskTagV8ToResponse(rawData)

View File

@@ -43,7 +43,7 @@ func ProcessJRZQ8A2DRequest(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 := mapNuoerSpecialListToResponse(rawData)

View File

@@ -43,7 +43,7 @@ func ProcessJRZQ8B3CRequest(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 := mapNuoerConsumerTagToResponse(rawData)

View File

@@ -43,7 +43,7 @@ func ProcessJRZQ9D4ERequest(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 := mapNuoerLoanRiskTagV23ToResponse(rawData)