firstLevelDeptId

This commit is contained in:
sxu 2025-02-18 17:34:59 +08:00
parent dd9f7bef7c
commit 7c563df7fb
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class SysDeptServiceImpl implements ISysDeptService
dept.setDeptName(str); dept.setDeptName(str);
} }
dept.setCompanyId(SecurityUtils.getLoginUser().getSysUser().getCompanyId()); dept.setCompanyId(SecurityUtils.getLoginUser().getSysUser().getCompanyId());
//dept.setDeptId(SecurityUtils.getLoginUser().getSysUser().getFirstLevelDeptId()); dept.setDeptId(SecurityUtils.getLoginUser().getSysUser().getFirstLevelDeptId());
return deptMapper.selectDeptList(dept); return deptMapper.selectDeptList(dept);
} }