huang
2025-10-30 a99650cb00bf5b0650c33f39a4221b765201d228
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
package com.mes.vertical.details.vo;
 
import com.mes.vertical.history.VerticalSheetCageHistoryTask;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Author : zhoush
 * @Date: 2025/9/4 17:28
 * @Description:
 */
@Data
public class VerticalSheetCageIndexMessageVO {
    @ApiModelProperty(value = "笼子使用率")
    List<VerticalSheetCageVO> bigStorageCageUsage;
    @ApiModelProperty(value = "笼内数据汇总")
    List<VerticalSheetCageSummaryVO> bigStorageSummary;
    @ApiModelProperty(value = "进片任务")
    List<VerticalSheetCageHistoryTask> inTaskList;
    @ApiModelProperty(value = "出片任务")
    List<VerticalSheetCageHistoryTask> outTaskList;
    @ApiModelProperty(value = "设备下的所有笼子玻璃数量")
    private Map<Integer, List<VerticalSheetCageVO>> verticalSheetCageInfoMap;
    @ApiModelProperty(value = "钢化开关")
    private Boolean temperingSwitch;
    @ApiModelProperty(value = "调度开关")
    private Boolean dispatchSwitch;
    @ApiModelProperty(value = "进片联机状态")
    private Boolean inOnlineState;
    @ApiModelProperty(value = "出片联机状态")
    private Boolean outOnlineState;
    @ApiModelProperty(value = "进片请求")
    private Integer inPlcRequest;
    @ApiModelProperty(value = "出片请求")
    private Integer outPlcRequest;
    @ApiModelProperty(value = "进片启动")
    private Integer inMesSend;
    @ApiModelProperty(value = "出片启动")
    private Integer outMesSend;
}