| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.information.entity.Information; |
| | | import org.springblade.modules.information.vo.InformationVO; |
| | | import org.springblade.modules.system.entity.Dept; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @param deptId |
| | | */ |
| | | void deleteUserByDeptId(@Param("deptId") String deptId); |
| | | String selJurchilder(String id); |
| | | |
| | | /** |
| | | * 查询当前单位是否有子级单位 |
| | | * @param informationVO |
| | | * @return |
| | | */ |
| | | List<Dept> getDeptHashChildren(@Param("information") InformationVO informationVO); |
| | | |
| | | /** |
| | | * 查询单位的人数 |
| | | * @param dept |
| | | * @return |
| | | */ |
| | | int selectInformationUserNumCount(@Param("dept")Dept dept); |
| | | |
| | | /** |
| | | * 查询单位的已派遣人数 |
| | | * @param dept |
| | | * @return |
| | | */ |
| | | int selectInformationDispatcherNumCount(@Param("dept")Dept dept); |
| | | |
| | | /** |
| | | * 查询单位持证的人数 |
| | | * @param dept |
| | | * @return |
| | | */ |
| | | int selectInformationHoldNumCount(@Param("dept")Dept dept); |
| | | } |