| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.dto.MdcAlarmListDto; |
| | | 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); |
| | | |
| | | /** |
| | | * 查询时间段内运行数据 |
| | | */ |
| | | List<MdcEquipmentRunningSection> selectRunningData(String equipmentId, Date startDate, Date endDate); |
| | | |
| | | List<MdcAlarmListDto> selectAlarmList(MdcAlarmAnalyzeQueryVo mdcAlarmAnalyzeQueryVo, String startDate, String endDate); |
| | | |
| | | List<Integer> getDataList(String equipmentId, Date date); |
| | | |
| | | } |