feat(flow): 添加受理单ID批量查询功能并优化任务关联信息展示

- 在TsComplaintAcceptBo中新增acceptIds字段用于批量查询
- 实现基于受理单ID列表的批量查询条件构建
- 添加工具方法enrichWithAcceptInfo批量填充受理单信息到任务VO
- 为TsComplaintTaskVo和TsPlanExecuteRelVo添加acceptInfo关联字段
- 优化查询逻辑支持实时关联受理单信息展示
This commit is contained in:
2026-06-22 10:12:56 +08:00
parent 1a0a904903
commit 7ec3f49c73
6 changed files with 93 additions and 3 deletions

View File

@@ -96,5 +96,10 @@ public class TsComplaintAcceptBo extends BaseEntity {
*/
private List<Long> coilIds;
/**
* 受理单ID列表批量查询用
*/
private List<Long> acceptIds;
}

View File

@@ -82,5 +82,10 @@ public class TsComplaintTaskVo {
@ExcelProperty(value = "备注")
private String remark;
/**
* 关联的受理单信息
*/
private TsComplaintAcceptVo acceptInfo;
}

View File

@@ -81,5 +81,7 @@ public class TsPlanExecuteRelVo {
@ExcelProperty(value = "备注")
private String remark;
// 受理单
private TsComplaintAcceptVo acceptInfo;
}