| | |
| | | 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; |
| | |
| | | */ |
| | | List<InformationVO> selectInformationPage(IPage<InformationVO> page, @Param("information")InformationVO information); |
| | | void insertIn(@Param("information")Information information); |
| | | void deleteIn(String creditcode); |
| | | void deleteSh(String creditcode); |
| | | void deleteMe(String creditcode); |
| | | void deleteIn(@Param("departmentid")String departmentid); |
| | | void deleteSh(@Param("deptId")String deptId); |
| | | void deleteMe(@Param("deptId")String deptId); |
| | | Map selectCount(String departmentid); |
| | | List<Map<Object,String>> selectInCount(); |
| | | void deleteDept(String departmentid); |
| | | void deleteDept(@Param("id") String id); |
| | | List<Map<Object,Object>> selectExtype(String deptid,String jurisdiction); |
| | | List<Map<Object,Object>> selectHold(String deptid,String jurisdiction); |
| | | List<Map<Object,Object>> selectDis(String deptid); |
| | | List<Map<Object,Object>> selectDisp(String deptid); |
| | | List<Map<Object,Object>> selectSoil(String deptid); |
| | | List<Map<Object,Object>> selectDisp(String deptid,String jurisdiction); |
| | | List<Map<Object,Object>> selectSoil(String deptid,String jurisdiction); |
| | | |
| | | /** |
| | | * 查询培训单位信息(可以报名) |
| | |
| | | * @return |
| | | */ |
| | | List<InformationVO> securityPage(IPage<InformationVO> page, @Param("information") InformationVO information); |
| | | Map<String, String> queryYearKh(String year,String jurisdiction,String deptid); |
| | | List queryYearKh(@Param("year") String year,@Param("jurisdiction")String jurisdiction,@Param("deptid")String deptid); |
| | | |
| | | /** |
| | | * 根据deptid 删除用户信息 |
| | | * @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); |
| | | } |