yangbin
2025-02-20 ade808e926b4ac0284756ee62d5f3fa90aabe814
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.jeecg.modules.mdc.service;
 
import org.jeecg.modules.mdc.entity.MdcEquipmentStatisticalInfo;
import com.baomidou.mybatisplus.extension.service.IService;
 
/**
 * @Description: 设备单日运行数据表
 * @Author: lius
 * @Date: 2023-04-14
 * @Version: V1.0
 */
public interface IMdcEquipmentStatisticalInfoService extends IService<MdcEquipmentStatisticalInfo> {
 
    /**
     * 计算设备单日运行数据
     *
     * @param dateTime
     */
    void runningAllEquipmentStatisticalProcess(String dateTime);
 
 
    Long selectSize(String equipmentId, String monday, String saturday);
 
}