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
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
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
package com.shlanbao.tzsc.data.runtime.bean;
 
/*************************************************************
 * Description:        包装机数据实体类
 * Create Date:
 * Author:
 *
 * Change Log:
 *  Date          Author        Description
 *  2019-6-26      sunzhen       重载了构造方法
 *
 *************************************************************/
public class PackerData {
 
    private String equipmentCode;//设备型号
    private String equipmentType;//设备型号
    private String equipmentEdcs;//设备名
    private String workorderCode;//工单code
    private String orderId;//工单id
    private String matName;//牌号
    private Double planQty;//计划产量
    private String unit;
    private String planStim;//计划开始时间
    private String planEtim;//计划结束时间
    private String bthCode;//批次号
    private String stim;//开始时间
 
    private Double xiaohemoBzdh;//小盒膜标准单耗
    private Double tiaohemoBzdh;//条盒膜标准单耗
    private Double xiaohezhiBzdh;//小盒纸标准单耗
    private Double tiaohezhiBzdh;//条盒纸标准单耗
    private Double neichenzhiBzdh;//内衬纸标准单耗
 
    //调整页面物料系数时使用,这些事MD_Mat 表中的id
    private String xiaohemoMatId;//小盒膜
    private String tiaohemoMatId;//条盒膜
    private String xiaohezhMatId;//小盒纸
    private String tiaohezhMatId;//条盒纸
    private String neichenzMatId;//内衬纸
    
    private Double xiaohemoEuval;//小盒膜报警上限
    private Double tiaohemoEuval;//条盒膜报警上限
    private Double xiaohezhiEuval;//小盒纸报警上限
    private Double tiaohezhiEuval;//条盒纸报警上限
    private Double neichenzhiEuval;//内衬纸报警上限
 
    //实时数据部分
    private Integer online; //网络状态(0异常,1正常)
    private Double qty; //产量
    private Double badQty; //剔除产量
    private Double xiaohemoVal; //小盒膜消耗
    private Double tiaohemoVal; //条盒膜消耗
    private Double xiaohezhiVal; //小盒纸消耗
    private Double tiaohezhiVal; //条盒纸消耗
    private Double neichenzhiVal; //内衬纸消耗
    private Double runTime; //运行时间
    private Double stopTime; //停机时间
    private Integer stopTimes; //停机次数
    private Integer speed; //车速
    private Integer runStatus; //包装机状态 1: online/0: offline
    private Double tsQty; //提升机产量
    private Double mainQty; //主机产量(小包机)
    private Double mainBadQty; //主机剔除量
    private Double tbjQty; //透包机产量
    private Double tbjGdQty; //透包机剔除好包
    private Double tbjBadQty; //透包机剔除坏包
    //private Double pbjQty; //排包机产量
 
    public PackerData() {
    }
 
    /**
     * @author 作者 : sunzhen
     * @version 创建时间:2019年6月26日 上午11:21:47
     * @param online
     * @param qty
     * @param badQty
     * @param xiaohemoVal
     * @param tiaohemoVal
     * @param xiaohezhiVal
     * @param tiaohezhiVal
     * @param neichenzhiVal
     * @param runTime
     * @param stopTime
     * @param stopTimes
     * @param speed
     * @param runStatus
     * @param tsQty
     * @param mainQty
     * @param mainBadQty
     * @param tbjQty
     * @param tbjGdQty
     * @param tbjBadQty
     */
    public PackerData(Integer online, Double qty, Double badQty, Double xiaohemoVal, Double tiaohemoVal,
                      Double xiaohezhiVal, Double tiaohezhiVal, Double neichenzhiVal, Double runTime,
                      Double stopTime, Integer stopTimes, Integer speed, Integer runStatus, Double tsQty,
                      Double mainQty, Double mainBadQty, Double tbjQty, Double tbjGdQty, Double tbjBadQty) {
        this.online = online;
        this.qty = qty;
        this.badQty = badQty;
        this.xiaohemoVal = xiaohemoVal;
        this.tiaohemoVal = tiaohemoVal;
        this.xiaohezhiVal = xiaohezhiVal;
        this.tiaohezhiVal = tiaohezhiVal;
        this.neichenzhiVal = neichenzhiVal;
        this.runTime = runTime;
        this.stopTime = stopTime;
        this.stopTimes = stopTimes;
        this.speed = speed;
        this.runStatus = runStatus;
        this.tsQty = tsQty;
        this.mainQty = mainQty;
        this.mainBadQty = mainBadQty;
        this.tbjQty = tbjQty;
        this.tbjGdQty = tbjGdQty;
        this.tbjBadQty = tbjBadQty;
    }
 
    public PackerData(Integer online, Double qty, double badQty, Double xiaohemoVal, Double tiaohemoVal,
                      Double xiaohezhiVal, Double tiaohezhiVal, Double neichenzhiVal, Double runTime,
                      Double stopTime, Integer stopTimes, Integer speed, Double tsQty, Double mainQty,
                      Double mainBadQty, Double tbjQty, Double tbjGdQty, Double tbjBadQty) {
        this.online = online;
        this.qty = qty;
        this.badQty = badQty;
        this.xiaohemoVal = xiaohemoVal;
        this.tiaohemoVal = tiaohemoVal;
        this.xiaohezhiVal = xiaohezhiVal;
        this.tiaohezhiVal = tiaohezhiVal;
        this.neichenzhiVal = neichenzhiVal;
        this.runTime = runTime;
        this.stopTime = stopTime;
        this.stopTimes = stopTimes;
        this.speed = speed;
        this.tsQty = tsQty;
        this.mainQty = mainQty;
        this.mainBadQty = mainBadQty;
        this.tbjQty = tbjQty;
        this.tbjGdQty = tbjGdQty;
        this.tbjBadQty = tbjBadQty;
    }
 
    public String getEquipmentCode() {
        return equipmentCode;
    }
 
    public void setEquipmentCode(String equipmentCode) {
        this.equipmentCode = equipmentCode;
    }
 
    public String getEquipmentType() {
        return equipmentType;
    }
 
    public void setEquipmentType(String equipmentType) {
        this.equipmentType = equipmentType;
    }
 
    public String getEquipmentEdcs() {
        return equipmentEdcs;
    }
 
    public void setEquipmentEdcs(String equipmentEdcs) {
        this.equipmentEdcs = equipmentEdcs;
    }
 
    public String getWorkorderCode() {
        return workorderCode;
    }
 
    public void setWorkorderCode(String workorderCode) {
        this.workorderCode = workorderCode;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public String getMatName() {
        return matName;
    }
 
    public void setMatName(String matName) {
        this.matName = matName;
    }
 
    public Double getPlanQty() {
        return planQty;
    }
 
    public void setPlanQty(Double planQty) {
        this.planQty = planQty;
    }
 
    public String getUnit() {
        return unit;
    }
 
    public void setUnit(String unit) {
        this.unit = unit;
    }
 
    public String getPlanStim() {
        return planStim;
    }
 
    public void setPlanStim(String planStim) {
        this.planStim = planStim;
    }
 
    public String getPlanEtim() {
        return planEtim;
    }
 
    public void setPlanEtim(String planEtim) {
        this.planEtim = planEtim;
    }
 
    public String getBthCode() {
        return bthCode;
    }
 
    public void setBthCode(String bthCode) {
        this.bthCode = bthCode;
    }
 
    public String getStim() {
        return stim;
    }
 
    public void setStim(String stim) {
        this.stim = stim;
    }
 
    public Double getXiaohemoBzdh() {
        return xiaohemoBzdh;
    }
 
    public void setXiaohemoBzdh(Double xiaohemoBzdh) {
        this.xiaohemoBzdh = xiaohemoBzdh;
    }
 
    public Double getTiaohemoBzdh() {
        return tiaohemoBzdh;
    }
 
    public void setTiaohemoBzdh(Double tiaohemoBzdh) {
        this.tiaohemoBzdh = tiaohemoBzdh;
    }
 
    public Double getXiaohezhiBzdh() {
        return xiaohezhiBzdh;
    }
 
    public void setXiaohezhiBzdh(Double xiaohezhiBzdh) {
        this.xiaohezhiBzdh = xiaohezhiBzdh;
    }
 
    public Double getTiaohezhiBzdh() {
        return tiaohezhiBzdh;
    }
 
    public void setTiaohezhiBzdh(Double tiaohezhiBzdh) {
        this.tiaohezhiBzdh = tiaohezhiBzdh;
    }
 
    public Double getNeichenzhiBzdh() {
        return neichenzhiBzdh;
    }
 
    public void setNeichenzhiBzdh(Double neichenzhiBzdh) {
        this.neichenzhiBzdh = neichenzhiBzdh;
    }
 
    public String getXiaohemoMatId() {
        return xiaohemoMatId;
    }
 
    public void setXiaohemoMatId(String xiaohemoMatId) {
        this.xiaohemoMatId = xiaohemoMatId;
    }
 
    public String getTiaohemoMatId() {
        return tiaohemoMatId;
    }
 
    public void setTiaohemoMatId(String tiaohemoMatId) {
        this.tiaohemoMatId = tiaohemoMatId;
    }
 
    public String getXiaohezhMatId() {
        return xiaohezhMatId;
    }
 
    public void setXiaohezhMatId(String xiaohezhMatId) {
        this.xiaohezhMatId = xiaohezhMatId;
    }
 
    public String getTiaohezhMatId() {
        return tiaohezhMatId;
    }
 
    public void setTiaohezhMatId(String tiaohezhMatId) {
        this.tiaohezhMatId = tiaohezhMatId;
    }
 
    public String getNeichenzMatId() {
        return neichenzMatId;
    }
 
    public void setNeichenzMatId(String neichenzMatId) {
        this.neichenzMatId = neichenzMatId;
    }
 
    public Double getXiaohemoEuval() {
        return xiaohemoEuval;
    }
 
    public void setXiaohemoEuval(Double xiaohemoEuval) {
        this.xiaohemoEuval = xiaohemoEuval;
    }
 
    public Double getTiaohemoEuval() {
        return tiaohemoEuval;
    }
 
    public void setTiaohemoEuval(Double tiaohemoEuval) {
        this.tiaohemoEuval = tiaohemoEuval;
    }
 
    public Double getXiaohezhiEuval() {
        return xiaohezhiEuval;
    }
 
    public void setXiaohezhiEuval(Double xiaohezhiEuval) {
        this.xiaohezhiEuval = xiaohezhiEuval;
    }
 
    public Double getTiaohezhiEuval() {
        return tiaohezhiEuval;
    }
 
    public void setTiaohezhiEuval(Double tiaohezhiEuval) {
        this.tiaohezhiEuval = tiaohezhiEuval;
    }
 
    public Double getNeichenzhiEuval() {
        return neichenzhiEuval;
    }
 
    public void setNeichenzhiEuval(Double neichenzhiEuval) {
        this.neichenzhiEuval = neichenzhiEuval;
    }
 
    public Integer getOnline() {
        return online;
    }
 
    public void setOnline(Integer online) {
        this.online = online;
    }
 
    public Double getQty() {
        return qty;
    }
 
    public void setQty(Double qty) {
        this.qty = qty;
    }
 
    public Double getBadQty() {
        return badQty;
    }
 
    public void setBadQty(Double badQty) {
        this.badQty = badQty;
    }
 
    public Double getXiaohemoVal() {
        return xiaohemoVal;
    }
 
    public void setXiaohemoVal(Double xiaohemoVal) {
        this.xiaohemoVal = xiaohemoVal;
    }
 
    public Double getTiaohemoVal() {
        return tiaohemoVal;
    }
 
    public void setTiaohemoVal(Double tiaohemoVal) {
        this.tiaohemoVal = tiaohemoVal;
    }
 
    public Double getXiaohezhiVal() {
        return xiaohezhiVal;
    }
 
    public void setXiaohezhiVal(Double xiaohezhiVal) {
        this.xiaohezhiVal = xiaohezhiVal;
    }
 
    public Double getTiaohezhiVal() {
        return tiaohezhiVal;
    }
 
    public void setTiaohezhiVal(Double tiaohezhiVal) {
        this.tiaohezhiVal = tiaohezhiVal;
    }
 
    public Double getNeichenzhiVal() {
        return neichenzhiVal;
    }
 
    public void setNeichenzhiVal(Double neichenzhiVal) {
        this.neichenzhiVal = neichenzhiVal;
    }
 
    public Double getRunTime() {
        return runTime;
    }
 
    public void setRunTime(Double runTime) {
        this.runTime = runTime;
    }
 
    public Double getStopTime() {
        return stopTime;
    }
 
    public void setStopTime(Double stopTime) {
        this.stopTime = stopTime;
    }
 
    public Integer getStopTimes() {
        return stopTimes;
    }
 
    public void setStopTimes(Integer stopTimes) {
        this.stopTimes = stopTimes;
    }
 
    public Integer getSpeed() {
        return speed;
    }
 
    public void setSpeed(Integer speed) {
        this.speed = speed;
    }
 
    public Integer getRunStatus() {
        return runStatus;
    }
 
    public void setRunStatus(Integer runStatus) {
        this.runStatus = runStatus;
    }
 
    public Double getTsQty() {
        return tsQty;
    }
 
    public void setTsQty(Double tsQty) {
        this.tsQty = tsQty;
    }
 
    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;
    }
}