Lius
2024-10-09 33aea4a7532fcaddbd4262e51900b5102c0aa07c
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.mdc.entity.EquipmentAlarm;
import org.jeecg.modules.mdc.entity.MdcEquipmentMonitor;
import org.jeecg.modules.screen.dto.MdcProductDayscheduleDto;
import org.jeecg.modules.screen.dto.ToolLifeDto;
 
import java.util.List;
 
/**
 * @author Lius
 * @date 2024/8/26 15:00
 */
public interface MdcSubLargeScreenService {
    /**
     * 当日生产进度
     *
     * @param productionId
     * @return
     */
    List<MdcProductDayscheduleDto> todayProductionProgress(String productionId);
 
    /**
     * 设备实时状态
     *
     * @param productionId
     * @return
     */
    List<MdcEquipmentMonitor> equipmentStatus(String productionId);
 
    /**
     * 设备报警
     *
     * @param productionId
     * @return
     */
    List<EquipmentAlarm> equipmentAlarm(String productionId);
 
    /**
     * 刀具寿命管理
     *
     * @param productionId
     * @return
     */
    List<ToolLifeDto> toolLifeList(String productionId);
}