| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentRunningSectionDto; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentRunningSection; |
| | | import org.jeecg.modules.mdc.vo.DayUtilizationRateContrastQueryVo; |
| | | import org.jeecg.modules.mdc.vo.MdcAlarmAnalyzeQueryVo; |
| | | import org.jeecg.modules.mdc.vo.MdcEquipmentRunningSectionVo; |
| | | |
| | | import java.util.Date; |
| | |
| | | /** |
| | | * 查询报警数据 |
| | | */ |
| | | List<MdcEquipmentRunningSection> findAlarmList(DayUtilizationRateContrastQueryVo vo); |
| | | List<MdcEquipmentRunningSection> findAlarmList(MdcAlarmAnalyzeQueryVo vo); |
| | | |
| | | /** |
| | | * 查询次数 |
| | | */ |
| | | Integer findAlarmCount(String equipmentId, String startDate, String endDate, String alarmCode); |
| | | |
| | | /** |
| | | * 根据日期查询次数 |
| | | */ |
| | | Integer findAlarmCountByDate(String startDate, String endDate, MdcAlarmAnalyzeQueryVo vo); |
| | | } |