Administrator
2021-08-06 5f030a19bec827fdabb8731f43c2785f48968942
src/main/java/org/springblade/modules/information/mapper/InformationMapper.java
@@ -18,6 +18,7 @@
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;
@@ -45,4 +46,18 @@
   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>> selectDis(String deptid);
   List<Map<Object,Object>> selectDisp(String deptid);
   List<Map<Object,Object>> selectSoil(String deptid);
   /**
    * 查询培训单位信息(可以报名)
    * @param page
    * @param information 保安单位信息对象
    * @return
    */
   List<InformationVO> securityPage(IPage<InformationVO> page, @Param("information") InformationVO information);
}