| | |
| | | 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); |
| | | |
| | | List<MdcEquipmentStatisticalInfo> findByEquipmentAndDate(List<String> equipmentList, String start, String end); |
| | | |
| | | List<MdcEquipmentStatisticalInfo> findByEquIdAndDate(String equipmentId, String start, String end); |
| | | |
| | | MdcEquipmentStatisticalInfo findByEquIdAndMonth(String equipmentId, String month); |
| | | |
| | | /** |
| | | * 根据设备编号和日期查询运行数据 |
| | | * |
| | | * @param equipmentId |
| | | * @return |
| | | */ |
| | | List<MdcEquipmentStatisticalInfo> findMdcEquipmentStatisticalInfo(String equipmentId, String start, String end); |
| | | } |