ZengTao
2025-11-05 7d8cd9d28e97ea54ab4c76dbe37fd910f6d279c5
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.mes.hollow.entity.vo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.mes.hollow.entity.HollowBigStorageCage;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @Author : zhoush
 * @Date: 2025/9/4 17:02
 * @Description:
 */
@Data
public class HollowBigCageDetailsVO extends HollowBigStorageCage {
 
    @ApiModelProperty(value = "大理片笼详情表主键 ID", position = 1)
    @TableId(value = "id", type = IdType.AUTO)
    private Long detailId;
 
    @ApiModelProperty(value = "设备 ID", position = 2)
    private Integer detailDeviceId;
 
    @ApiModelProperty(value = "栅格号", position = 3)
    private Integer detailSlot;
 
    @ApiModelProperty(value = "玻璃 ID", position = 4)
    private String glassId;
 
    @ApiModelProperty(value = "小片在格子内的顺序", position = 5)
    private Integer sequence;
 
    @ApiModelProperty(value = "流程卡号", position = 6)
    private String flowCardId;
 
    @ApiModelProperty(value = "流程卡落架编码", position = 7)
    private String flowCardSequence;
 
    @ApiModelProperty(value = "玻璃类型", position = 8)
    private Integer glassType;
 
    @ApiModelProperty(value = "玻璃宽度(单位:mm)", position = 9)
    private Double width;
 
    @ApiModelProperty(value = "玻璃高度(单位:mm)", position = 10)
    private Double height;
 
    @ApiModelProperty(value = "玻璃厚度(单位:mm)", position = 11)
    private Double thickness;
 
    @ApiModelProperty(value = "钢化版图 ID", position = 12)
    private Integer temperingLayoutId;
 
    @ApiModelProperty(value = "钢化版图片序号", position = 13)
    private Integer temperingFeedSequence;
 
    @ApiModelProperty(value = "X 坐标", position = 14)
    private Integer xCoordinate;
 
    @ApiModelProperty(value = "Y 坐标", position = 15)
    private Integer yCoordinate;
 
    @ApiModelProperty(value = "玻璃状态", position = 16)
    private Integer state;
 
    @ApiModelProperty(value = "玻璃间隙", position = 17)
    private Integer gap;
 
    @ApiModelProperty(value = "工程号 ID", position = 18)
    private String engineerId;
 
    @ApiModelProperty(value = "层号", position = 19)
    private Integer totalLayer;
 
    @ApiModelProperty(value = "层号", position = 20)
    private Integer layer;
 
    @ApiModelProperty(value = "创建时间", position = 21)
    private Date createTime;
 
    @ApiModelProperty(value = "更新时间", position = 22)
    private Date updateTime;
 
    @ApiModelProperty(value = "膜系 ID", position = 23)
    private String filmsId;
 
    @ApiModelProperty(value = "是否旋转(角度,单位:度)", position = 24)
    private Integer angle;
 
    @ApiModelProperty(value = "是否已钢化", position = 25)
    private Integer isTemp;
 
    @ApiModelProperty(value = "中空顺序", position = 26)
    private Integer hollowSequence;
 
    @ApiModelProperty(value = "是否配对", position = 27)
    private Integer isPair;
 
    @ApiModelProperty(value = "组号", position = 28)
    private Integer virtualSlot;
 
    @ApiModelProperty(value = "组序", position = 29)
    private Integer slotSequence;
 
    @ApiModelProperty(value = "落架顺序", position = 30)
    private Integer shelfOrder;
 
}