| | |
| | | |
| | | import com.ruoyi.common.core.domain.TreeSelect; |
| | | import com.ruoyi.common.core.domain.entity.SysDept; |
| | | import com.ruoyi.common.core.domain.entity.SysUserDept; |
| | | |
| | | /** |
| | | * 部门管理 服务层 |
| | |
| | | * @return 部门信息集合 |
| | | */ |
| | | public List<SysDept> selectDeptList(SysDept dept); |
| | | |
| | | /** |
| | | * 查询部门管理数据 |
| | | * |
| | | * @param dept 部门信息 |
| | | * @return 部门信息集合 |
| | | */ |
| | | public List<SysDept> selectSysDeptList(SysDept dept); |
| | | |
| | | /** |
| | | * 获取所有的部门信息 |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteDeptById(Long deptId); |
| | | |
| | | |
| | | /** |
| | | * 获取叶子科室 |
| | | * |
| | | * @param sysUserDept |
| | | * @return 结果 |
| | | */ |
| | | public List<SysDept> selectLeafSysDeptListBySysUserDept(SysUserDept sysUserDept); |
| | | } |