feat(hrm): 添加抄送标志字段支持已审批流程查询

- 在HrmFlowCcBo中新增ccFlag字段
- 修改HrmFlowCcController的my方法增加ccFlag参数支持
- 在HrmFlowCcServiceImpl中实现ccFlag为1时查询已审批流程实例逻辑
- 添加flowInstMapper依赖注入用于查询流程实例数据
- 增加stream包导入支持列表转换操作
- 在OaSalaryMasterServiceImpl中添加按创建时间倒序排序功能
This commit is contained in:
2026-02-10 14:56:19 +08:00
parent 77346b97e9
commit 613bf59833
4 changed files with 27 additions and 1 deletions

View File

@@ -29,5 +29,7 @@ public class HrmFlowCcBo extends BaseEntity {
private Long fromUserId;
private String remark;
private Integer ccFlag;
}