zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
package com.shlanbao.tzsc.base.mapping;
 
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
 
import com.shlanbao.tzsc.base.model.BaseEntity;
import com.shlanbao.tzsc.utils.extents.DateFmtAnnotation;
 
 
/**
 * SchWorkorder entity. @author MyEclipse Persistence Tools
 */
 
public class SchWorkorder extends BaseEntity implements java.io.Serializable {
 
 
    // Fields
    private String id;
    private String loginUserId;//登陆人id
    private String loginName;//登陆人
    private MdUnit mdUnit;//单位信息
    private MdEquipment mdEquipment;//设备信息
    private MdTeam mdTeam;    //班组信息
    private MdShift mdShift;//班次信息
    private MdMat mdMat;//牌号信息
    private String erpCode;//erp订单号2
    private String code;
    private String bth;
    private Long isNew;
    private Long type;
    private Long prodType;
    private Double qty;
    @DateFmtAnnotation(fmtPattern = "yyyy-MM-dd")
    private Date date;
    @DateFmtAnnotation(fmtPattern = "yyyy-MM-dd HH:mm:ss")
    private Date stim;
    @DateFmtAnnotation(fmtPattern = "yyyy-MM-dd HH:mm:ss")
    private Date etim;
    private String bomVersion;
    private Long sts;
    private Long isCheck;
    private Date checkTime;
    private Date realStim;
    private Date realEtim;
    private Long runSeq;
    private Date recvTime;
    private Long enable;
    private Long del;
    private String isAuto;//是否自动运行 add by luther.zhang 20150417
    private Set schWorkorderCrafts = new HashSet(0);
    private Set qmSelfCheckCigarettes = new HashSet(0);
    private Set schWorkorderBoms = new HashSet(0);
    private Set qmSelfCheckStrips = new HashSet(0);
    private Set schStatOutputs = new HashSet(0);
    private Set msgQmWarns = new HashSet(0);
    private Set qmSelfCheckFilters = new HashSet(0);
    private Set qmSelfCheckCartonses = new HashSet(0);
    private Set qmOutwards = new HashSet(0);
    private Set msgConWarns = new HashSet(0);
    private Set qmSelfCheckPackets = new HashSet(0);
 
    private String erp_code; //erp订单号1
    private String parameterSetRevision;//工艺版本号
 
// Constructors
 
    public String getParameterSetRevision() {
        return parameterSetRevision;
    }
 
 
    public void setParameterSetRevision(String parameterSetRevision) {
        this.parameterSetRevision = parameterSetRevision;
    }
 
 
    public String getErp_code() {
        return erp_code;
    }
 
 
    public void setErp_code(String erp_code) {
        this.erp_code = erp_code;
    }
 
 
    /**
     * default constructor
     */
    public SchWorkorder() {
    }
 
 
    public SchWorkorder(String id) {
        super();
        this.id = id;
    }
 
 
    /**
     * full constructor
     */
    public SchWorkorder(MdUnit mdUnit, MdEquipment mdEquipment, MdTeam mdTeam, MdShift mdShift, MdMat mdMat, String code, String bth, Long isNew, Long type, Long prodType, Double qty, Date date, Date stim, Date etim, String bomVersion, Long sts, Long isCheck, Date checkTime, Date realStim, Date realEtim, Long runSeq, Date recvTime, Long enable, Long del, Set schWorkorderCrafts, Set qmSelfCheckCigarettes, Set schWorkorderBoms, Set qmSelfCheckStrips, Set schStatOutputs, Set msgQmWarns, Set qmSelfCheckFilters, Set qmSelfCheckCartonses, Set qmOutwards, Set msgConWarns, Set qmSelfCheckPackets) {
        this.mdUnit = mdUnit;
        this.mdEquipment = mdEquipment;
        this.mdTeam = mdTeam;
        this.mdShift = mdShift;
        this.mdMat = mdMat;
        this.code = code;
        this.bth = bth;
        this.isNew = isNew;
        this.type = type;
        this.prodType = prodType;
        this.qty = qty;
        this.date = date;
        this.stim = stim;
        this.etim = etim;
        this.bomVersion = bomVersion;
        this.sts = sts;
        this.isCheck = isCheck;
        this.checkTime = checkTime;
        this.realStim = realStim;
        this.realEtim = realEtim;
        this.runSeq = runSeq;
        this.recvTime = recvTime;
        this.enable = enable;
        this.del = del;
        this.schWorkorderCrafts = schWorkorderCrafts;
        this.qmSelfCheckCigarettes = qmSelfCheckCigarettes;
        this.schWorkorderBoms = schWorkorderBoms;
        this.qmSelfCheckStrips = qmSelfCheckStrips;
        this.schStatOutputs = schStatOutputs;
        this.msgQmWarns = msgQmWarns;
        this.qmSelfCheckFilters = qmSelfCheckFilters;
        this.qmSelfCheckCartonses = qmSelfCheckCartonses;
        this.qmOutwards = qmOutwards;
        this.msgConWarns = msgConWarns;
        this.qmSelfCheckPackets = qmSelfCheckPackets;
    }
 
 
    // Property accessors
 
    public String getId() {
        return this.id;
    }
 
 
    public String getErpCode() {
        return erpCode;
    }
 
 
    public void setErpCode(String erpCode) {
        this.erpCode = erpCode;
    }
 
 
    public void setId(String id) {
        this.id = id;
    }
 
    public MdUnit getMdUnit() {
        return this.mdUnit;
    }
 
    public String getLoginName() {
        return loginName;
    }
 
 
    public void setLoginName(String loginName) {
        this.loginName = loginName;
    }
 
 
    public void setMdUnit(MdUnit mdUnit) {
        this.mdUnit = mdUnit;
    }
 
    public String getLoginUserId() {
        return loginUserId;
    }
 
 
    public void setLoginUserId(String loginUserId) {
        this.loginUserId = loginUserId;
    }
 
 
    public MdEquipment getMdEquipment() {
        return this.mdEquipment;
    }
 
    public void setMdEquipment(MdEquipment mdEquipment) {
        this.mdEquipment = mdEquipment;
    }
 
    public MdTeam getMdTeam() {
        return this.mdTeam;
    }
 
    public void setMdTeam(MdTeam mdTeam) {
        this.mdTeam = mdTeam;
    }
 
    public MdShift getMdShift() {
        return this.mdShift;
    }
 
    public void setMdShift(MdShift mdShift) {
        this.mdShift = mdShift;
    }
 
    public MdMat getMdMat() {
        return this.mdMat;
    }
 
    public void setMdMat(MdMat mdMat) {
        this.mdMat = mdMat;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getBth() {
        return this.bth;
    }
 
    public void setBth(String bth) {
        this.bth = bth;
    }
 
    public Long getIsNew() {
        return this.isNew;
    }
 
    public void setIsNew(Long isNew) {
        this.isNew = isNew;
    }
 
    public Long getType() {
        return this.type;
    }
 
    public void setType(Long type) {
        this.type = type;
    }
 
    public Long getProdType() {
        return this.prodType;
    }
 
    public void setProdType(Long prodType) {
        this.prodType = prodType;
    }
 
    public Double getQty() {
        return this.qty;
    }
 
    public void setQty(Double qty) {
        this.qty = qty;
    }
 
    public Date getDate() {
        return this.date;
    }
 
    public void setDate(Date date) {
        this.date = date;
    }
 
    public Date getStim() {
        return this.stim;
    }
 
    public void setStim(Date stim) {
        this.stim = stim;
    }
 
    public Date getEtim() {
        return this.etim;
    }
 
    public void setEtim(Date etim) {
        this.etim = etim;
    }
 
    public String getBomVersion() {
        return this.bomVersion;
    }
 
    public void setBomVersion(String bomVersion) {
        this.bomVersion = bomVersion;
    }
 
    public Long getSts() {
        return this.sts;
    }
 
    public void setSts(Long sts) {
        this.sts = sts;
    }
 
    public Long getIsCheck() {
        return this.isCheck;
    }
 
    public void setIsCheck(Long isCheck) {
        this.isCheck = isCheck;
    }
 
    public Date getCheckTime() {
        return this.checkTime;
    }
 
    public void setCheckTime(Date checkTime) {
        this.checkTime = checkTime;
    }
 
    public Date getRealStim() {
        return this.realStim;
    }
 
    public void setRealStim(Date realStim) {
        this.realStim = realStim;
    }
 
    public Date getRealEtim() {
        return this.realEtim;
    }
 
    public void setRealEtim(Date realEtim) {
        this.realEtim = realEtim;
    }
 
    public Long getRunSeq() {
        return this.runSeq;
    }
 
    public void setRunSeq(Long runSeq) {
        this.runSeq = runSeq;
    }
 
    public Date getRecvTime() {
        return this.recvTime;
    }
 
    public void setRecvTime(Date recvTime) {
        this.recvTime = recvTime;
    }
 
    public Long getEnable() {
        return this.enable;
    }
 
    public void setEnable(Long enable) {
        this.enable = enable;
    }
 
    public Long getDel() {
        return this.del;
    }
 
    public void setDel(Long del) {
        this.del = del;
    }
 
    public Set getSchWorkorderCrafts() {
        return this.schWorkorderCrafts;
    }
 
    public void setSchWorkorderCrafts(Set schWorkorderCrafts) {
        this.schWorkorderCrafts = schWorkorderCrafts;
    }
 
    public Set getQmSelfCheckCigarettes() {
        return this.qmSelfCheckCigarettes;
    }
 
    public void setQmSelfCheckCigarettes(Set qmSelfCheckCigarettes) {
        this.qmSelfCheckCigarettes = qmSelfCheckCigarettes;
    }
 
    public Set getSchWorkorderBoms() {
        return this.schWorkorderBoms;
    }
 
    public void setSchWorkorderBoms(Set schWorkorderBoms) {
        this.schWorkorderBoms = schWorkorderBoms;
    }
 
    public Set getQmSelfCheckStrips() {
        return this.qmSelfCheckStrips;
    }
 
    public void setQmSelfCheckStrips(Set qmSelfCheckStrips) {
        this.qmSelfCheckStrips = qmSelfCheckStrips;
    }
 
    public Set getSchStatOutputs() {
        return this.schStatOutputs;
    }
 
    public void setSchStatOutputs(Set schStatOutputs) {
        this.schStatOutputs = schStatOutputs;
    }
 
    public Set getMsgQmWarns() {
        return this.msgQmWarns;
    }
 
    public void setMsgQmWarns(Set msgQmWarns) {
        this.msgQmWarns = msgQmWarns;
    }
 
    public Set getQmSelfCheckFilters() {
        return this.qmSelfCheckFilters;
    }
 
    public void setQmSelfCheckFilters(Set qmSelfCheckFilters) {
        this.qmSelfCheckFilters = qmSelfCheckFilters;
    }
 
    public Set getQmSelfCheckCartonses() {
        return this.qmSelfCheckCartonses;
    }
 
    public void setQmSelfCheckCartonses(Set qmSelfCheckCartonses) {
        this.qmSelfCheckCartonses = qmSelfCheckCartonses;
    }
 
    public Set getQmOutwards() {
        return this.qmOutwards;
    }
 
    public void setQmOutwards(Set qmOutwards) {
        this.qmOutwards = qmOutwards;
    }
 
    public Set getMsgConWarns() {
        return this.msgConWarns;
    }
 
    public void setMsgConWarns(Set msgConWarns) {
        this.msgConWarns = msgConWarns;
    }
 
    public Set getQmSelfCheckPackets() {
        return this.qmSelfCheckPackets;
    }
 
    public void setQmSelfCheckPackets(Set qmSelfCheckPackets) {
        this.qmSelfCheckPackets = qmSelfCheckPackets;
    }
 
    public String getIsAuto() {
        return isAuto;
    }
 
    public void setIsAuto(String isAuto) {
        this.isAuto = isAuto;
    }
 
}