| | |
| | | public List<SysDept> selectDeptList(SysDept dept); |
| | | |
| | | /** |
| | | * 查询部门管理数据-无数据权限 |
| | | * |
| | | * @param dept |
| | | * @return |
| | | */ |
| | | public List<SysDept> selectDeptListNoAuth(SysDept dept); |
| | | |
| | | /** |
| | | * 查询部门树结构信息 |
| | | * |
| | | * @param dept 部门信息 |
| | | * @return 部门树信息集合 |
| | | */ |
| | | public List<TreeSelect> selectDeptTreeList(SysDept dept); |
| | | |
| | | |
| | | public List<TreeSelect> deptTreeNoDataAuth(SysDept dept); |
| | | |
| | | /** |
| | | * 流程配置使用--树结构 |
| | |
| | | * @return 部门信息 |
| | | */ |
| | | public SysDept selectDeptById(Long deptId); |
| | | |
| | | public List<SysDept> selectDeptByIds(List<Long> deptIds); |
| | | |
| | | /** |
| | | * 根据ID查询所有子部门(正常状态) |
| | |
| | | * @return |
| | | */ |
| | | List<StringTreeSelect> flowableAll(); |
| | | |
| | | /** |
| | | * 获取某部门的下级部门 |
| | | * |
| | | * @param deptId |
| | | * @return |
| | | */ |
| | | List<Long> getChildIds(Long deptId); |
| | | } |