| | |
| | | package com.ruoyi.doublePrevention.service.baseService.impl; |
| | | |
| | | import com.ruoyi.doublePrevention.entity.SPI.SPIDataReqBO; |
| | | import com.ruoyi.doublePrevention.entity.SPI.TroubleData; |
| | | import com.ruoyi.doublePrevention.entity.SPI.TroubleLevel; |
| | | import com.ruoyi.doublePrevention.entity.dto.DataCountDangerLevelRectifiedRespDO; |
| | | import com.ruoyi.doublePrevention.entity.dto.DataCountDangerLevelRespDO; |
| | | import com.ruoyi.doublePrevention.repository.TrHiddenDangerCheckPointRepository; |
| | |
| | | public DataCountDangerLevelRectifiedRespDO listDangerLevelRectifiedCountByTime(Date startTime, Date endTime, List<Long> depIds) { |
| | | return checkPointRepository.listDangerLevelRectifiedCountByTime(startTime,endTime,depIds); |
| | | } |
| | | |
| | | @Override |
| | | public List<TroubleData> getSPIData(SPIDataReqBO spiDataReqBO) { |
| | | return checkPointRepository.getSPIData(spiDataReqBO); |
| | | } |
| | | |
| | | @Override |
| | | public TroubleLevel getTroubleLevel(SPIDataReqBO spiDataReqBO) { |
| | | return checkPointRepository.getTroubleLevel(spiDataReqBO); |
| | | } |
| | | } |