严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
package com.northglass.entity;
 
import java.util.Date;
 
import javax.persistence.Entity;
import javax.persistence.Table;
 
 @Entity
@Table(name="orderglassinfo")
public class OrderGlassInfo extends IdEntity {
        //private String id;//id编号
        private String orderNumber;
        private String code;//编号
        private double weight;//宽度
        private double height;//高度
        private int number;//数量
        private String contractId;//合同号
        private String processingDrawingNo;//加工图号
        private String customerName;//客户名称
        private double thickness;//厚度
        private String colorMembraneSystem;//颜色膜系
        private double areaMeasure;//面积
        private String finishedProductName;//成品名称
        private String orderSequenceNumber;//订单序号
        private String projectName;//项目名
        private double edgeGrinding;//磨边量
        private double chamfer;//倒角
        private String finishing;//精磨
        private String remark;//明细备注
        private String process;
        private String thicknesses;  //玻璃厚度结构
        
        private String glassId;     //序号
        private String processCardId;
        private String materialRackId;//架号
        private String glassNo;
        
        private String processRequiement;          //加工要求
        private String holeNumber;           //孔数
        private String floorNumber;           //楼层号
        private String barcode;             //条码号
        private Date deliveryDate;           //交货日期 
        //private String rank_id;             //架子ID
    public OrderGlassInfo(){
    }
    
    public OrderGlassInfo(String orderNumber, String code, double weight, double height, int number, String contractId, String processingDrawingNo, String customerName, double thickness, String colorMembraneSystem, double areaMeasure, String finishedProductName, String orderSequenceNumber, String projectName, double edgeGrinding, double chamfer, String finishing, String remark) {
        this.orderNumber = orderNumber;
        this.code = code;
        this.weight = weight;
        this.height = height;
        this.number = number;
        this.contractId = contractId;
        this.processingDrawingNo = processingDrawingNo;
        this.customerName = customerName;
        this.thickness = thickness;
        this.colorMembraneSystem = colorMembraneSystem;
        this.areaMeasure = areaMeasure;
        this.finishedProductName = finishedProductName;
        this.orderSequenceNumber = orderSequenceNumber;
        this.projectName = projectName;
        this.edgeGrinding = edgeGrinding;
        this.chamfer = chamfer;
        this.finishing = finishing;
        this.remark = remark;
    }
   /* public String getid() {
        return id;
    }
 
    public void setid(String id) {
        this.id = id;
    }*/
    public String getOrderNumber() {
        return orderNumber;
    }
 
    public void setOrderNumber(String orderNumber) {
        this.orderNumber = orderNumber;
    }
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public double getWeight() {
        return weight;
    }
 
    public void setWeight(double weight) {
        this.weight = weight;
    }
 
    public double getHeight() {
        return height;
    }
 
    public void setHeight(double height) {
        this.height = height;
    }
 
    public int getNumber() {
        return number;
    }
 
    public void setNumber(int number) {
        this.number = number;
    }
 
    public String getContractId() {
        return contractId;
    }
 
    public void setContractId(String contractId) {
        this.contractId = contractId;
    }
 
    public String getProcessingDrawingNo() {
        return processingDrawingNo;
    }
 
    public void setProcessingDrawingNo(String processingDrawingNo) {
        this.processingDrawingNo = processingDrawingNo;
    }
 
    public String getCustomerName() {
        return customerName;
    }
 
    public void setCustomerName(String customerName) {
        this.customerName = customerName;
    }
 
    public double getThickness() {
        return thickness;
    }
 
    public void setThickness(double thickness) {
        this.thickness = thickness;
    }
 
    public String getColorMembraneSystem() {
        return colorMembraneSystem;
    }
 
    public void setColorMembraneSystem(String colorMembraneSystem) {
        this.colorMembraneSystem = colorMembraneSystem;
    }
 
    public double getAreaMeasure() {
        return areaMeasure;
    }
 
    public void setAreaMeasure(double areaMeasure) {
        this.areaMeasure = areaMeasure;
    }
 
    public String getFinishedProductName() {
        return finishedProductName;
    }
 
    public void setFinishedProductName(String finishedProductName) {
        this.finishedProductName = finishedProductName;
    }
 
    public String getOrderSequenceNumber() {
        return orderSequenceNumber;
    }
 
    public void setOrderSequenceNumber(String orderSequenceNumber) {
        this.orderSequenceNumber = orderSequenceNumber;
    }
 
    public String getProjectName() {
        return projectName;
    }
 
    public void setProjectName(String projectName) {
        this.projectName = projectName;
    }
 
    public double getEdgeGrinding() {
        return edgeGrinding;
    }
 
    public void setEdgeGrinding(double edgeGrinding) {
        this.edgeGrinding = edgeGrinding;
    }
 
    public double getChamfer() {
        return chamfer;
    }
 
    public void setChamfer(double chamfer) {
        this.chamfer = chamfer;
    }
 
    public String getFinishing() {
        return finishing;
    }
 
    public void setFinishing(String finishing) {
        this.finishing = finishing;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public String getProcess() {
        return process;
    }
 
    public void setProcess(String process) {
        this.process = process;
    }
 
    public String getThicknesses() {
        return thicknesses;
    }
 
    public void setThicknesses(String thicknesses) {
        this.thicknesses = thicknesses;
    }
 
    public String getGlassId() {
        return glassId;
    }
 
    public void setGlassId(String glassId) {
        this.glassId = glassId;
    }
 
    public String getProcessCardId() {
        return processCardId;
    }
 
    public void setProcessCardId(String processCardId) {
        this.processCardId = processCardId;
    }
 
    public String getMaterialRackId() {
        return materialRackId;
    }
 
    public void setMaterialRackId(String materialRackId) {
        this.materialRackId = materialRackId;
    }
 
    public String getGlassNo() {
        return glassNo;
    }
 
    public void setGlassNo(String glassNo) {
        this.glassNo = glassNo;
    }
 
    public String getProcessRequiement() {
        return processRequiement;
    }
 
    public void setProcessRequiement(String processRequiement) {
        this.processRequiement = processRequiement;
    }
 
    public String getHoleNumber() {
        return holeNumber;
    }
 
    public void setHoleNumber(String holeNumber) {
        this.holeNumber = holeNumber;
    }
 
    public String getFloorNumber() {
        return floorNumber;
    }
 
    public void setFloorNumber(String floorNumber) {
        this.floorNumber = floorNumber;
    }
 
    public String getBarcode() {
        return barcode;
    }
 
    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }
 
    public Date getDeliveryDate() {
        return deliveryDate;
    }
 
    public void setDeliveryDate(Date deliveryDate) {
        this.deliveryDate = deliveryDate;
    }
    
}