yangbin
2025-02-19 efdecc7019261f8fdc875505281f54ef7a3bfbce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package org.jeecg.modules.mdc.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.mdc.entity.EquipmentStatisticalInfo;
import org.jeecg.modules.mdc.subcontrol.vo.LastWeekDataVo;
 
import java.util.List;
 
/**
 * @author Lius
 * @date 2023/10/24 14:04
 */
public interface IEquipmentStatisticalInfoService extends IService<EquipmentStatisticalInfo> {
    /**
     * 查询段时间内的数据
     *
     * @return
     */
    List<LastWeekDataVo> findDataForBigScreen(List<String> equipmentIdList, String monday, String saturday);
 
    Integer findEquipmentId(List<String> equipmentIdList, String date);
 
 
    /**
     * 查询段时间内的数据(设备维度)
     */
    List<LastWeekDataVo> findDataRankingForBigScreen(List<String> equipmentIdList, String monday, String saturday);
    Long selectSize(String equipmentId, String monday, String saturday);
}