fix: 补充银行流水接口 uploadSequnceNumber 字段接收和映射

- 在 GetBankStatementResponse.BankStatementItem 中添加 uploadSequnceNumber 字段
- 在 CcdiBankStatement.fromResponse() 中添加字段映射到 batchSequence
- 修复流水分析接口返回的上传序号数据丢失问题
This commit is contained in:
wkc
2026-03-05 16:57:13 +08:00
parent a753b87c1f
commit b7197682e7
2 changed files with 4 additions and 0 deletions

View File

@@ -131,6 +131,9 @@ public class GetBankStatementResponse {
/** 上传logId */ /** 上传logId */
private Integer batchId; private Integer batchId;
/** 上传序号 */
private Integer uploadSequnceNumber;
/** 项目id */ /** 项目id */
private Integer groupId; private Integer groupId;

View File

@@ -198,6 +198,7 @@ public class CcdiBankStatement implements Serializable {
entity.setTrxType(item.getTransTypeId()); entity.setTrxType(item.getTransTypeId());
entity.setCustomerLeId(item.getCustomerId()); entity.setCustomerLeId(item.getCustomerId());
entity.setCustomerAccountName(item.getCustomerName()); entity.setCustomerAccountName(item.getCustomerName());
entity.setBatchSequence(item.getUploadSequnceNumber());
// 5. 特殊字段处理 // 5. 特殊字段处理
entity.setMetaJson(null); // 根据文档要求强制设为 null entity.setMetaJson(null); // 根据文档要求强制设为 null