| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.information.entity.Information; |
| | | import org.springblade.modules.information.vo.InformationVO; |
| | | |
| | |
| | | * @param information |
| | | * @return |
| | | */ |
| | | List<InformationVO> selectInformationPage(IPage page, InformationVO information); |
| | | 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); |
| | | Map selectCount(String departmentid); |
| | | List<Map<Object,String>> selectInCount(); |
| | | void deleteDept(String departmentid); |
| | | List<Map<Object,Object>> selectExtype(String deptid); |
| | | List<Map<Object,Object>> selectHold(String deptid); |
| | | 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); |
| | | |
| | | /** |
| | | * 查询培训单位信息(可以报名) |
| | | * @param page |
| | | * @param information 保安单位信息对象 |
| | | * @return |
| | | */ |
| | | List<InformationVO> securityPage(IPage<InformationVO> page, @Param("information") InformationVO information); |
| | | List queryYearKh(String year,String jurisdiction,String deptid); |
| | | } |