zenglf
2023-09-28 f84d9e69907cb678150eaa6393fd74cf042fcca4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
}