| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.mdc.dto.MdcAlarmListDto; |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentWaitSectionDto; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentRunningSection; |
| | | import org.jeecg.modules.mdc.vo.MdcAlarmAnalyzeQueryVo; |
| | | |
| | |
| | | List<MdcAlarmListDto> selectAlarmList(@Param("vo") MdcAlarmAnalyzeQueryVo mdcAlarmAnalyzeQueryVo, @Param("startDate") String startDate, @Param("endDate") String endDate); |
| | | |
| | | List<Integer> getDataList(@Param("equipmentId") String equipmentId, @Param("date") Date date); |
| | | |
| | | List<MdcEquipmentWaitSectionDto> findWaitList(@Param("date") String date); |
| | | |
| | | MdcEquipmentRunningSection getFirstRecord(); |
| | | } |