zhangnaisong
2024-08-01 2799314298467be9ed68d9e19891e35cb3c3edad
ruoyi-system/src/main/java/com/ruoyi/system/mapper/SysDeptMapper.java
@@ -20,7 +20,7 @@
     * @return 部门信息集合
     */
    public List<SysDept> selectDeptList(SysDept dept);
    public List<SysDept> selectDeptListNoDataScope(SysDept dept);
    /**
     * 根据角色ID查询部门树信息
     * 
@@ -125,5 +125,13 @@
     */
    public int deleteDeptById(Long deptId);
    public List<Long> getChildrenDeptIdList(@Param("deptIdList")List<Long> deptIdList);
    public List<Long> selectDeptIdBySub(Long deptId);
    public List<Long> selectRoleDeptIdByUsersId(String usersId);
    public List<SysDept> getParentsDeptListByDeptId(Long deptId);
    public List<SysDept> selectNextChildrenDeptByIdAndInList(@Param("deptId")Long deptId,@Param("deptIdList")List<Long> deptIdList);
}