Lius
2025-03-04 61bd1f27cb0f83890bfcd9aec6257eda13c0fc4d
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
package org.jeecg.modules.screen.service;
 
import org.jeecg.modules.screen.dto.EquipmentStatusOverview;
 
import java.util.Map;
 
/**
 * @Author: Lius
 * @CreateTime: 2025-02-28
 * @Description:
 */
public interface MdcLargeScreenService {
 
    /**
     * 设备情况
     *
     * @param productionId
     * @return
     */
    EquipmentStatusOverview equipmentStatusOverview(String productionId);
 
    /**
     * 设备月利用率趋势
     *
     * @param productionId
     * @return
     */
    Map<String, Object> monthUtilizationTendency(String productionId);
 
    /**
     * 设备周利用率趋势
     *
     * @param productionId
     * @return
     */
    Map<String, Object> weekUtilizationTendency(String productionId);
 
    /**
     * 设备日利用率
     *
     * @param productionId
     * @return
     */
    Map<String, Object> dayUtilizationTendency(String productionId);
 
}