| | |
| | | package org.jeecg.modules.mdc.service; |
| | | |
| | | import org.jeecg.modules.mdc.dto.MdcEquipmentStatisticalDto; |
| | | import org.jeecg.modules.mdc.entity.Equipment; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipmentStatisticalInfo; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 设备单日运行数据表 |
| | |
| | | Integer selectProcessLong(String equipmentId, String validDate); |
| | | |
| | | MdcEquipmentStatisticalDto findByEquipmentAndMonth(String equipmentId, String date); |
| | | |
| | | MdcEquipmentStatisticalInfo findByEquipmentAndDate(List<String> equipmentList, String date); |
| | | |
| | | MdcEquipmentStatisticalInfo findByEquIdAndDate(String equipmentId, String date); |
| | | |
| | | MdcEquipmentStatisticalInfo findByEquIdAndMonth(String equipmentId, String month); |
| | | } |