xiangpei
2025-03-05 d5503d0cbe5af548541777a179ee39126b209b36
system/src/main/java/com/ycl/system/mapper/SysDeptMapper.java
@@ -19,6 +19,8 @@
     */
    public List<SysDept> selectDeptList(SysDept dept);
    public List<SysDept> selectDeptListNoAuth(SysDept dept);
    /**
     * 根据角色ID查询部门树信息
     *
@@ -36,7 +38,7 @@
     */
    public SysDept selectDeptById(Long deptId);
    List<SysDept> selectDeptByIds(List<Long> deptIds);
    List<SysDept> selectDeptByIds(@Param("deptIds") List<Long> deptIds);
    /**
     * 根据ID查询所有子部门
@@ -120,4 +122,6 @@
    String selectAncestors(Long userId);
    Long selectByName(@Param("name") String projectOwnerUnit);
}