feat(flow): 添加受理单ID批量查询功能并优化任务关联信息展示
- 在TsComplaintAcceptBo中新增acceptIds字段用于批量查询 - 实现基于受理单ID列表的批量查询条件构建 - 添加工具方法enrichWithAcceptInfo批量填充受理单信息到任务VO - 为TsComplaintTaskVo和TsPlanExecuteRelVo添加acceptInfo关联字段 - 优化查询逻辑支持实时关联受理单信息展示
This commit is contained in:
@@ -96,5 +96,10 @@ public class TsComplaintAcceptBo extends BaseEntity {
|
||||
*/
|
||||
private List<Long> coilIds;
|
||||
|
||||
/**
|
||||
* 受理单ID列表(批量查询用)
|
||||
*/
|
||||
private List<Long> acceptIds;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -82,5 +82,10 @@ public class TsComplaintTaskVo {
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 关联的受理单信息
|
||||
*/
|
||||
private TsComplaintAcceptVo acceptInfo;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -81,5 +81,7 @@ public class TsPlanExecuteRelVo {
|
||||
@ExcelProperty(value = "备注")
|
||||
private String remark;
|
||||
|
||||
// 受理单
|
||||
private TsComplaintAcceptVo acceptInfo;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user