| | |
| | | |
| | | import com.gkhy.exam.common.domain.TreeSelect; |
| | | import com.gkhy.exam.common.domain.entity.SysDept; |
| | | import com.gkhy.exam.system.domain.SysFunctionalDistribution; |
| | | import com.gkhy.exam.system.domain.vo.*; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @param dept 部门信息 |
| | | * @return 部门信息集合 |
| | | */ |
| | | public List<SysDept> selectDeptList(SysDept dept); |
| | | public List<DeptVo> selectDeptList(SysDept dept); |
| | | |
| | | List<SysDept> getOutDeptList(SysDept dept); |
| | | |
| | |
| | | * @param deptId 部门ID |
| | | * @return 部门信息 |
| | | */ |
| | | public SysDept selectDeptById(Long deptId); |
| | | public DeptDetialVo selectDeptById(Long deptId); |
| | | |
| | | /** |
| | | * 根据ID查询所有子部门(正常状态) |
| | |
| | | */ |
| | | public int insertDept(SysDept dept); |
| | | |
| | | |
| | | public int saveDept(SysDeptSaveDTOReq dept); |
| | | |
| | | |
| | | public int saveDeptResponsibility(SysDeptResponsibilityReqVo reqVo); |
| | | |
| | | List<SysFunctionalDistribution> getFunctionalDistributionList(Long companyId); |
| | | |
| | | int initFunctionalDistribution(Long companyId); |
| | | |
| | | int saveFunctionalDistribution(FunctionalDistributionVo reqVo); |
| | | |
| | | /** |
| | | * 修改保存部门信息 |
| | | * |