hyingbo
7 天以前 cc0e9036de6e922e8fe254fef01d8de9996024b7
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package org.jeecg.modules.mdc.service;
 
import org.jeecg.modules.mdc.dto.MdcEquipmentDto;
import org.jeecg.modules.mdc.entity.MdcEquipment;
import org.jeecg.modules.mdc.entity.MdcFeedback;
import org.jeecg.modules.mdc.entity.MdcOverallEquipmentEfficiency;
import org.jeecg.modules.mdc.vo.MdcCommonVo;
import org.jeecg.modules.mdc.vo.MdcHomeEfficiencyVo;
 
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);
 
    /**
     * 工段级设备效率
     */
    MdcHomeEfficiencyVo getEquipmentEfficiencyStatistics(String userId, String key);
 
    /**
     * 设备级效率统计
     */
    MdcHomeEfficiencyVo getEquipmentLevelEfficiencyStatistics(String equipmentId);
 
    /**
     * 设备级整年度利用率和OEE
     */
    Map<String, Object> getEquipmentAnnualEfficiencyStatistics(String equipmentId);
 
    /**
     * 根据车间id获取设备列表
     */
    List<MdcEquipment> getEquipmentList(String key);
 
    /**
     * 查询设备运行信息
     */
    MdcEquipmentDto getEquipmentDetails(String equipmentId);
 
    List<MdcFeedback> getFeedbackList(String key);
}