feat(hrm): 添加流程任务审批人昵称显示功能

- 引入 UserService 依赖以获取用户信息
- 在 HrmFlowTaskVo 中新增 assigneeNickName 字段
- 查询流程任务时关联查询审批人昵称并设置到返回对象中
- 优化流程任务详情查询逻辑以支持审批人信息展示
This commit is contained in:
2026-02-10 13:05:34 +08:00
parent 16328050c8
commit 01fda62cf6
2 changed files with 7 additions and 1 deletions

View File

@@ -41,4 +41,6 @@ public class HrmFlowTaskVo implements Serializable {
private Date createTime;
private String updateBy;
private Date updateTime;
private String assigneeNickName;
}