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
| package com.mes.glassinfo.entity;
|
| import lombok.Getter;
| import lombok.Setter;
|
| /**
| * @author SNG-010
| */
| @Setter
| @Getter
| public class OptimizeGlassinfo {
|
| // Getter methods
| // Setter methods
| /**
| * 流程卡号
| */
| private String projectId;
|
| /**
| * 工程种类
| */
| private String type;
|
| /**
| * 宽
| */
| private Double width;
|
| /**
| * 高
| */
| private Double height;
|
| /**
| * 厚度
| */
| private Double glassThickness;
|
| /**
| * 玻璃膜系
| */
| private String glassType;
|
| /**
| * 小片宽(加磨量)
| */
| private Double pWidth;
| /**
| * 小片高(加磨量)
| */
| private Double pHeight;
| /**
| * 版图id
| */
| private Integer stockId;
| /**
| * 钢化版图编号(架号)
| */
| private Integer heatLayoutId;
| /**
| * 钢化序号
| */
| private Integer heatLayoutSort;
| /**
| * x坐标
| */
| private Integer xAxis;
| /**
| * y坐标
| */
| private Integer yAxis;
| /**
| * 工程号
| */
| private String projectNo;
| /**
| * 小片编号
| */
| private String glassId;
|
| }
|
|