zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
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;
 
/**
 * SchStatOutput entity. @author MyEclipse Persistence Tools
 */
 
public class SchStatOutput extends BaseEntity implements java.io.Serializable {
 
    // Fields
 
    private String id;
    private MdUnit mdUnit;
    private SchWorkorder schWorkorder;
    private Double qty;
    private Double badQty;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date stim;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date etim;
    private Double runTime;
    private Double stopTime;
    private Long stopTimes;
    private MdUnit timeUnit;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date lastRecvTime;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date lastUpdateTime;
    private Long isFeedback;
    @DateFmtAnnotation(fmtPattern="yyyy-MM-dd HH:mm:ss")
    private Date feedbackTime;
    private String feedbackUser;
    private Long del;
    private Set schStatInputs = new HashSet(0);
    private Set schStatFaults = new HashSet(0);
    private Double DACqty;//数采站采集的真实数据
 
    private Double pbjQty;//排包机产量
    private Double mainQty;//主机产量(小包机)
    private Double mainBadQty;//主机剔除量
    private Double tbjQty;//透包机产量
    private Double tbjGdQty;//主机剔除量
    private Double tbjBadQty;//透包机产量
    private Double recQty1;//接收1
    private Double recQty2;//接收2
    private Double qty1; //1-手动录入在线追溯数据
    private Double qty2; //2-手动录入手动追加数据
    private Double qty3; //3-手动录入成品抽样数据
    private Double qty4; //4-手动录入高架置换数据
    private Double qty5; //5-手动录入1号工程码数据
    //人工发料数--成型滤棒报表,手工发料维护参数 
    private Double cxpz; //成型盘纸
    private Double cxdb; //成型大包
    private Double cxkl; //创库发料
    
    
    
    // Constructors
 
    public Double getCxpz() {
        return cxpz;
    }
 
 
    public void setCxpz(Double cxpz) {
        this.cxpz = cxpz;
    }
 
 
    public Double getCxdb() {
        return cxdb;
    }
 
 
    public void setCxdb(Double cxdb) {
        this.cxdb = cxdb;
    }
 
 
    public Double getCxkl() {
        return cxkl;
    }
 
 
    public void setCxkl(Double cxkl) {
        this.cxkl = cxkl;
    }
 
 
    public Double getPbjQty() {
        return pbjQty;
    }
 
 
    public void setPbjQty(Double pbjQty) {
        this.pbjQty = pbjQty;
    }
 
 
    public Double getMainQty() {
        return mainQty;
    }
 
 
    public void setMainQty(Double mainQty) {
        this.mainQty = mainQty;
    }
 
 
    public Double getMainBadQty() {
        return mainBadQty;
    }
 
 
    public void setMainBadQty(Double mainBadQty) {
        this.mainBadQty = mainBadQty;
    }
 
 
    public Double getTbjQty() {
        return tbjQty;
    }
 
 
    public void setTbjQty(Double tbjQty) {
        this.tbjQty = tbjQty;
    }
 
 
    
 
 
    public Double getTbjGdQty() {
        return tbjGdQty;
    }
 
 
    public void setTbjGdQty(Double tbjGdQty) {
        this.tbjGdQty = tbjGdQty;
    }
 
 
    public Double getTbjBadQty() {
        return tbjBadQty;
    }
 
 
    public void setTbjBadQty(Double tbjBadQty) {
        this.tbjBadQty = tbjBadQty;
    }
 
 
    /** default constructor */
    public SchStatOutput() {
    }
 
    
    public SchStatOutput(String id) {
        super();
        this.id = id;
    }
 
 
 
    /** full constructor */
    public SchStatOutput(MdUnit mdUnit, SchWorkorder schWorkorder, Double qty,
            Double badQty, Date stim, Date etim, Double runTime,
            Double stopTime, Long stopTimes, MdUnit timeUnit,
            Date lastRecvTime, Date lastUpdateTime, Long isFeedback,
            Date feedbackTime, String feedbackUser, Long del,
            Set schStatInputs, Set schStatFaults) {
        this.mdUnit = mdUnit;
        this.schWorkorder = schWorkorder;
        this.qty = qty;
        this.badQty = badQty;
        this.stim = stim;
        this.etim = etim;
        this.runTime = runTime;
        this.stopTime = stopTime;
        this.stopTimes = stopTimes;
        this.timeUnit = timeUnit;
        this.lastRecvTime = lastRecvTime;
        this.lastUpdateTime = lastUpdateTime;
        this.isFeedback = isFeedback;
        this.feedbackTime = feedbackTime;
        this.feedbackUser = feedbackUser;
        this.del = del;
        this.schStatInputs = schStatInputs;
        this.schStatFaults = schStatFaults;
    }
 
    // Property accessors
 
    public String getId() {
        return this.id;
    }
 
    public Double getDACqty() {
        return DACqty;
    }
 
 
    public void setDACqty(Double dACqty) {
        DACqty = dACqty;
    }
 
 
    public void setId(String id) {
        this.id = id;
    }
 
    public MdUnit getMdUnit() {
        return this.mdUnit;
    }
 
    public void setMdUnit(MdUnit mdUnit) {
        this.mdUnit = mdUnit;
    }
 
    public SchWorkorder getSchWorkorder() {
        return this.schWorkorder;
    }
 
    public void setSchWorkorder(SchWorkorder schWorkorder) {
        this.schWorkorder = schWorkorder;
    }
 
    public Double getQty() {
        return this.qty;
    }
 
    public void setQty(Double qty) {
        this.qty = qty;
    }
 
    public Double getBadQty() {
        return this.badQty;
    }
 
    public void setBadQty(Double badQty) {
        this.badQty = badQty;
    }
 
    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 Double getRunTime() {
        return this.runTime;
    }
 
    public void setRunTime(Double runTime) {
        this.runTime = runTime;
    }
 
    public Double getStopTime() {
        return this.stopTime;
    }
 
    public void setStopTime(Double stopTime) {
        this.stopTime = stopTime;
    }
 
    public Long getStopTimes() {
        return this.stopTimes;
    }
 
    public void setStopTimes(Long stopTimes) {
        this.stopTimes = stopTimes;
    }
 
    public MdUnit getTimeUnit() {
        return this.timeUnit;
    }
 
    public void setTimeUnit(MdUnit timeUnit) {
        this.timeUnit = timeUnit;
    }
 
    public Date getLastRecvTime() {
        return this.lastRecvTime;
    }
 
    public void setLastRecvTime(Date lastRecvTime) {
        this.lastRecvTime = lastRecvTime;
    }
 
    public Date getLastUpdateTime() {
        return this.lastUpdateTime;
    }
 
    public void setLastUpdateTime(Date lastUpdateTime) {
        this.lastUpdateTime = lastUpdateTime;
    }
 
    public Long getIsFeedback() {
        return this.isFeedback;
    }
 
    public void setIsFeedback(Long isFeedback) {
        this.isFeedback = isFeedback;
    }
 
    public Date getFeedbackTime() {
        return this.feedbackTime;
    }
 
    public void setFeedbackTime(Date feedbackTime) {
        this.feedbackTime = feedbackTime;
    }
 
    public String getFeedbackUser() {
        return this.feedbackUser;
    }
 
    public void setFeedbackUser(String feedbackUser) {
        this.feedbackUser = feedbackUser;
    }
 
    public Long getDel() {
        return this.del;
    }
 
    public void setDel(Long del) {
        this.del = del;
    }
 
    public Set getSchStatInputs() {
        return this.schStatInputs;
    }
 
    public void setSchStatInputs(Set schStatInputs) {
        this.schStatInputs = schStatInputs;
    }
 
    public Set getSchStatFaults() {
        return this.schStatFaults;
    }
 
    public void setSchStatFaults(Set schStatFaults) {
        this.schStatFaults = schStatFaults;
    }
 
 
    public Double getQty1() {
        return qty1;
    }
 
 
    public void setQty1(Double qty1) {
        this.qty1 = qty1;
    }
 
 
    public Double getQty2() {
        return qty2;
    }
 
 
    public void setQty2(Double qty2) {
        this.qty2 = qty2;
    }
 
 
    public Double getQty3() {
        return qty3;
    }
 
 
    public void setQty3(Double qty3) {
        this.qty3 = qty3;
    }
 
 
    public Double getQty4() {
        return qty4;
    }
 
 
    public void setQty4(Double qty4) {
        this.qty4 = qty4;
    }
 
 
    public Double getQty5() {
        return qty5;
    }
 
 
    public void setQty5(Double qty5) {
        this.qty5 = qty5;
    }
 
 
    public Double getRecQty1() {
        return recQty1;
    }
 
 
    public void setRecQty1(Double recQty1) {
        this.recQty1 = recQty1;
    }
 
 
    public Double getRecQty2() {
        return recQty2;
    }
 
 
    public void setRecQty2(Double recQty2) {
        this.recQty2 = recQty2;
    }
 
}