huang
2025-11-25 19f59c243e8df97c8b9fd9dba4e758be8235d68b
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package com.mes.glassinfo.request;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @Author : zhoush
 * @Date: 2025/7/14 11:12
 * @Description:
 */
 
@ApiModel(description = "玻璃信息表实体类")
@Data
public class GlassInfoImportRequest implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "玻璃ID", position = 1)
    private String glassId;
 
    @ApiModelProperty(value = "工程号", position = 2)
    private String engineerId;
 
    @ApiModelProperty(value = "流程卡", position = 3)
    private String flowCardId;
 
    @ApiModelProperty(value = "订单序号", position = 4)
    private String orderNumber;
 
    @ApiModelProperty(value = "宽", position = 5)
    private Double width;
 
    @ApiModelProperty(value = "高", position = 6)
    private Double height;
 
    @ApiModelProperty(value = "厚度", position = 7)
    private Double thickness;
 
    @ApiModelProperty(value = "膜系", position = 8)
    private String filmsId;
 
    @ApiModelProperty(value = "层数", position = 9)
    private int layer;
 
    @ApiModelProperty(value = "总层数", position = 10)
    private int totalLayer;
 
    @ApiModelProperty(value = "磨前宽", position = 11)
    private Double edgWidth;
 
    @ApiModelProperty(value = "磨前高", position = 12)
    private Double edgHeight;
 
    @ApiModelProperty(value = "是否配片", position = 13)
    private Integer isMultiple;
 
    @ApiModelProperty(value = "配片最大宽", position = 14)
    private Double maxWidth;
 
    @ApiModelProperty(value = "配片最大高", position = 15)
    private Double maxHeight;
 
    @ApiModelProperty(value = "钢化是否接受横放", position = 16)
    private Integer isHorizontal;
 
    @ApiModelProperty(value = "原片顺序", position = 17)
    private Integer rawSequence;
 
    @ApiModelProperty(value = "x坐标", position = 18)
    @JsonProperty("xAxis")
    private Double xAxis;
 
    @ApiModelProperty(value = "y坐标", position = 19)
    @JsonProperty("yAxis")
    private Double yAxis;
 
    @ApiModelProperty(value = "钢化版图id", position = 20)
    private Integer temperingLayoutId;
 
    @ApiModelProperty(value = "钢化版图片序", position = 21)
    private Integer temperingFeedSequence;
 
    @ApiModelProperty(value = "x坐标", position = 22)
    @JsonProperty("xCoordinate")
    private Integer xCoordinate;
 
    @ApiModelProperty(value = "y坐标", position = 23)
    @JsonProperty("yCoordinate")
    private Integer yCoordinate;
 
    @ApiModelProperty(value = "旋转角度(逆时针)", position = 24)
    private Double angle;
 
    @ApiModelProperty(value = "生产规则id", position = 25)
    private Integer ruleId;
 
    @ApiModelProperty(value = "是否合并", position = 26)
    private Integer combine;
 
    @ApiModelProperty(value = "打标属性", position = 27)
    private String markIcon;
 
    @ApiModelProperty(value = "除膜方式", position = 28)
    private Integer filmRemove;
 
    @ApiModelProperty(value = "落架次序", position = 29)
    private String flowCardSequence;
 
    @ApiModelProperty(value = "工艺流程", position = 30)
    private String process;
 
    @ApiModelProperty(value = "原片旋转角度", position = 31)
    private Integer rawAngle;
 
    @ApiModelProperty(value = "中空合片方向(0:无 ,1:外,2:内)", position = 32)
    private String hollowCombineDirection;
 
    @ApiModelProperty(value = "订单序号", position = 33)
    private Integer productSortNumber;
}