lsfx 行内流水返回修改

This commit is contained in:
wkc
2026-03-03 16:11:03 +08:00
parent beead1c908
commit c8b041f4b9
9 changed files with 1117 additions and 16 deletions

View File

@@ -2,6 +2,8 @@ package com.ruoyi.lsfx.domain.response;
import lombok.Data;
import java.util.List;
/**
* 拉取行内流水响应(匹配新文档3.5节)
*/
@@ -18,14 +20,6 @@ public class FetchInnerFlowResponse {
private Boolean successResponse;
/** 响应数据 */
private FetchData data;
private List<Integer> data;
@Data
public static class FetchData {
/** 状态码(如:501014表示无行内流水文件) */
private String code;
/** 消息(如:无行内流水文件) */
private String message;
}
}