lyh
2025-07-26 b16d7f9fd029bf9d37bcc3c6f3cf8472a0081888
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/service/IMdcEquipmentStatisticalInfoService.java
@@ -5,14 +5,25 @@
/**
 * @Description: 设备单日运行数据表
 * @Author: jeecg-boot
 * @Date:   2023-04-14
 * @Author: lius
 * @Date: 2023-04-14
 * @Version: V1.0
 */
public interface IMdcEquipmentStatisticalInfoService extends IService<MdcEquipmentStatisticalInfo> {
    /**
     * 计算设备单日运行数据
     *
     * @param dateTime
     */
    void runningAllEquipmentStatisticalProcess(String dateTime);
    /**
     * 根据设备编号和日期查询运行数据
     *
     * @param equipmentId
     * @param date
     * @return
     */
    MdcEquipmentStatisticalInfo findMdcEquipmentStatisticalInfo(String equipmentId, String date);
}