refactor(lsfx): 重构接口3 Request/Response,修正参数名和字段结构

This commit is contained in:
wkc
2026-03-02 22:08:11 +08:00
parent b89584a3dc
commit 731f078348
2 changed files with 22 additions and 16 deletions

View File

@@ -3,7 +3,7 @@ package com.ruoyi.lsfx.domain.request;
import lombok.Data; import lombok.Data;
/** /**
* 拉取行内流水请求参数 * 拉取行内流水请求参数(匹配新文档3.2节)
*/ */
@Data @Data
public class FetchInnerFlowRequest { public class FetchInnerFlowRequest {
@@ -11,15 +11,21 @@ public class FetchInnerFlowRequest {
/** 项目ID */ /** 项目ID */
private Integer groupId; private Integer groupId;
/** 数据渠道编码 */ /** 客户身份证号 */
private String dataChannel; private String customerNo;
/** 金综链流水日期ID */ /** 数据渠道编码(固定值:ZJRCU) */
private String jzDataDateId; private String dataChannelCode;
/** 行内流水开始日期 */ /** 发起请求的时间(格式:yyyyMMdd) */
private String innerBSStartDateId; private Integer requestDateId;
/** 行内流水结束日期 */ /** 拉取开始日期(格式:yyyyMMdd) */
private String innerBSEndDateId; private Integer dataStartDateId;
/** 拉取结束日期(格式:yyyyMMdd) */
private Integer dataEndDateId;
/** 柜员号 */
private Integer uploadUserId;
} }

View File

@@ -3,7 +3,7 @@ package com.ruoyi.lsfx.domain.response;
import lombok.Data; import lombok.Data;
/** /**
* 拉取行内流水响应 * 拉取行内流水响应(匹配新文档3.5节)
*/ */
@Data @Data
public class FetchInnerFlowResponse { public class FetchInnerFlowResponse {
@@ -11,8 +11,8 @@ public class FetchInnerFlowResponse {
/** 返回码 */ /** 返回码 */
private String code; private String code;
/** 消息 */ /** 状态 */
private String message; private String status;
/** 成功标识 */ /** 成功标识 */
private Boolean successResponse; private Boolean successResponse;
@@ -22,10 +22,10 @@ public class FetchInnerFlowResponse {
@Data @Data
public static class FetchData { public static class FetchData {
/** 任务ID */ /** 状态码(如:501014表示无行内流水文件) */
private String taskId; private String code;
/** 状态 */ /** 消息(如:无行内流水文件) */
private String status; private String message;
} }
} }