1. 流程枚举状态补充方法返回对应枚举

2. 新增获得指定用户的公司部门信息携带 Code
This commit is contained in:
qianshijiang
2025-09-28 11:43:54 +08:00
committed by chenbowen
parent 47f777d89c
commit 952fde209a
5 changed files with 73 additions and 0 deletions

View File

@@ -383,8 +383,10 @@ public class DeptServiceImpl implements DeptService {
CompanyDeptInfo info = new CompanyDeptInfo();
info.setCompanyId(company.getId());
info.setCompanyName(company.getName());
info.setCompanyCode(company.getCode());
info.setDeptId(dept.getId());
info.setDeptName(dept.getName());
info.setDeptCode(dept.getCode());
result.add(info);
}
return result;