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;
/**
* 拉取行内流水请求参数
* 拉取行内流水请求参数(匹配新文档3.2节)
*/
@Data
public class FetchInnerFlowRequest {
@@ -11,15 +11,21 @@ public class FetchInnerFlowRequest {
/** 项目ID */
private Integer groupId;
/** 数据渠道编码 */
private String dataChannel;
/** 客户身份证号 */
private String customerNo;
/** 金综链流水日期ID */
private String jzDataDateId;
/** 数据渠道编码(固定值:ZJRCU) */
private String dataChannelCode;
/** 行内流水开始日期 */
private String innerBSStartDateId;
/** 发起请求的时间(格式:yyyyMMdd) */
private Integer requestDateId;
/** 行内流水结束日期 */
private String innerBSEndDateId;
/** 拉取开始日期(格式:yyyyMMdd) */
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;
/**
* 拉取行内流水响应
* 拉取行内流水响应(匹配新文档3.5节)
*/
@Data
public class FetchInnerFlowResponse {
@@ -11,8 +11,8 @@ public class FetchInnerFlowResponse {
/** 返回码 */
private String code;
/** 消息 */
private String message;
/** 状态 */
private String status;
/** 成功标识 */
private Boolean successResponse;
@@ -22,10 +22,10 @@ public class FetchInnerFlowResponse {
@Data
public static class FetchData {
/** 任务ID */
private String taskId;
/** 状态码(如:501014表示无行内流水文件) */
private String code;
/** 状态 */
private String status;
/** 消息(如:无行内流水文件) */
private String message;
}
}