智慧保安后台管理-验收版本
Administrator
2021-12-04 804764fa08951636d118377923c7fddfccc4f643
src/main/java/org/springblade/modules/information/service/IInformationService.java
@@ -23,6 +23,8 @@
import org.springblade.modules.information.vo.InformationVO;
import com.baomidou.mybatisplus.extension.service.IService;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.springblade.modules.information.vo.ResponseVo;
import org.springblade.modules.system.vo.UserVO;
import java.util.List;
import java.util.Map;
@@ -92,7 +94,8 @@
   List<Map<Object,Object>> selJur();
   String selJurchilder(String id);
   List<Map<Object,Object>> seleJuList(String substring);
   //派遣统计图表
   List<Map<String, Object>> seleP(String jurisdiction,String deptid);
   /**
    * 获取保安公司信息(本市保安公司,分公司)包含经纬度
    * @return
@@ -170,4 +173,38 @@
    * @return
    */
   IPage<InformationVO> getSecurityUnitInsuranceLessPage(IPage<InformationVO> page, InformationVO information);
   /**
    * 统计表现差的信息
    * @return
    */
   List<ResponseVo> getSecurityPerformanceGroupCountList();
   /**
    * 统计资格审查异常信息
    * @return
    */
   List<ResponseVo> getSecurityExaminationGroupCountList();
   /**
    * 考试通过率低于50%
    * @return
    */
   List<ResponseVo> getSecurityExamPassingGroupCountList();
   /**
    *  查询 1 持证率低于50%, 2 社保缴纳率低于50%, 3 派遣率低于50%
    * @param type 1 持证率低于50%, 2 社保缴纳率低于50%, 3 派遣率低于50%
    * @return
    */
   List<ResponseVo> getSecurityHoldAndSoidAndDispatchGroupCountList(Integer type);
   /**
    * 更具辖区,公司查询未缴纳社保,未缴纳保险,未派遣人数
    * @param page
    * @param information
    * @param i
    * @return
    */
   IPage<UserVO> getNotSocialAndInsuranceAndDispatcherNumber(IPage<UserVO> page, InformationVO information, int i);
}