Lius
2024-09-27 5564c5450bb12bf9f31b0fc12133b34fab9b91f9
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
package org.jeecg.modules.screen.service;
 
import org.jeecg.modules.screen.dto.*;
import org.jeecg.modules.system.entity.MdcProduction;
 
import java.util.List;
import java.util.Map;
 
/**
 * @author Lius
 * @date 2024/8/19 16:02
 */
public interface MdcLargeScreenService {
 
    /**
     * 昨日概况(产品合格率 设备利用率 计划完成率)
     *
     * @return
     */
    YesterdayOverviewDto yesterdayOverview();
 
    /**
     * 今日生产进度
     *
     * @return
     */
    List<TodayProductionDto> todayProductionSchedule();
 
    /**
     * 今日产品合格率
     *
     * @return
     */
    List<TodayProductionPassRateDto> todayProductionPassRate();
 
    /**
     * 今日班组完成量
     *
     * @return
     */
    List<ClazzCompletionCountDto> todayClazzCompletionCount();
 
    /**
     * 今日设备工作效率
     *
     * @return
     */
    List<EquipmentRateDto> todayEquipmentRate();
 
    /**
     * 月设备利用率
     *
     * @return
     */
    List<MonthEquipmentUtilizationRateDto> monthEquipmentUtilizationRate();
 
    /**
     * 产线列表
     * @return
     */
    List<MdcProduction> productionList();
 
}