Lius
2024-04-02 4bd74ded216856176d47a87f69572084023be329
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package org.jeecg.modules.mdc.service;
 
import org.jeecg.modules.mdc.entity.MdcOverallEquipmentEfficiency;
import org.jeecg.modules.mdc.vo.MdcCommonVo;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author Lius
 * @date 2024/3/14 9:51
 */
public interface IMdcHomeService {
 
    /**
     * 设备运行状态统计
     */
    List<MdcCommonVo> getEquipmentStatusStatistics(String userId, String key);
 
    /**
     * 设备利用率统计
     */
    List<MdcCommonVo> getEquipmentUtilizationStatistics(String userId, String key);
 
    /**
     * 设备OEE统计
     */
    List<MdcCommonVo> getEquipmentOeeStatistics(String userId, String key);
 
    /**
     * 设备OEE和利用率统计柱状图
     */
    Map<String, Object> getEquipmentMonthStatistics(String userId, String key);
 
    /**
     * 工段级前七天利用率折线图
     */
    Map<String, Object> getEquipmentDayUtilizationStatistics(String userId, String key);
 
    /**
     * 查询设备上月OEE
     */
    List<MdcOverallEquipmentEfficiency> getEquipmentOEEMonthStatistics(String userId, String key);
}