| | |
| | | import org.springblade.modules.information.mapper.InformationMapper; |
| | | import org.springblade.modules.information.service.IInformationService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import org.springblade.modules.information.vo.ResponseVo; |
| | | import org.springframework.stereotype.Service; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | |
| | | public IPage<InformationVO> getSecurityUnitInsuranceLessPage(IPage<InformationVO> page, InformationVO information) { |
| | | return page.setRecords(baseMapper.getSecurityUnitLess50Page(page,4, information)); |
| | | } |
| | | |
| | | /** |
| | | * 统计表现差的信息 |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<ResponseVo> getSecurityPerformanceGroupCountList() { |
| | | return baseMapper.getSecurityPerformanceGroupCountList(); |
| | | } |
| | | |
| | | /** |
| | | * 统计资格审查异常信息 |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<ResponseVo> getSecurityExaminationGroupCountList() { |
| | | return baseMapper.getSecurityExaminationGroupCountList(); |
| | | } |
| | | |
| | | /** |
| | | * 考试通过率低于50% |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<ResponseVo> getSecurityExamPassingGroupCountList() { |
| | | return baseMapper.getSecurityExamPassingGroupCountList(); |
| | | } |
| | | |
| | | /** |
| | | * 查询 1 持证率低于50%, 2 社保缴纳率低于50%, 3 派遣率低于50% |
| | | * @param type 1 持证率低于50%, 2 社保缴纳率低于50%, 3 派遣率低于50% |
| | | * @return |
| | | */ |
| | | @Override |
| | | public List<ResponseVo> getSecurityHoldAndSoidAndDispatchGroupCountList(Integer type) { |
| | | return baseMapper.getSecurityHoldAndSoidAndDispatchGroupCountList(type); |
| | | } |
| | | |
| | | @Override |
| | | public IPage selectBxc(IPage page,String jurisdiction,String type) { |
| | | return page.setRecords(baseMapper.selectBxc(page,jurisdiction,type)); |
| | | } |
| | | } |