王佳豪
2021-06-26 718f604deb342b0bee6c588bb44e22ced3371fb8
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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
package com.slcf.bean;
 
/**
 * 工作明细档传参类
 * @author admin
 * @date 2018年11月21日
 */
public class WorkDetailCondition {
    private String lgnum;        //仓库号
    private int tbnum;          //转储请求编号
    private int tbpos;          //行项目
    private String zmatid;      //物料标签ID
    
    private String matnr;      //物料
    private String maktx;      //物料描述
    private String werks;      //工厂
    private double anfme;       //数量    
    private String altme;      //单位
    private String zpallet;    //托盘条码
    private String bname;      //用户ID
    private double nista;       //实际数量    
    
    private String wrk_no;      //工作号
    private String io_time;    //生成时间
    private String mat_no;      //物料编码
    private Long ctns;          //箱数
    private Long qty;           //数量
    private double wt;            //重量
    private String memo;        //备注
    private String bystr1;    
    private String bystr2;
    private String bystr3;
    private String bystr4;
    private String bystr5;
    private double bynum1;
    private double bynum2;
    private double bynum3;
    private double bynum4;
    private double bynum5;
    
    private String mat_name;      //物料名称
    private String str1;    
    private String str2;
    private String str3;
    private String str4;
    private String str5;
    private String str6;
    private String str7;
    private String str8;
    private String str9;
    private String str10;
    private double num1;
    private double num2;
    private double num3;
    private double num4;
    private double num5;
    private String modi_user;
    private String modi_time;
    private int pageNumber;
    private int pageSize;
 
    public String getLgnum() {
        return lgnum;
    }
    public void setLgnum(String lgnum) {
        this.lgnum = lgnum;
    }
    public int getTbnum() {
        return tbnum;
    }
    public void setTbnum(int tbnum) {
        this.tbnum = tbnum;
    }
    public int getTbpos() {
        return tbpos;
    }
    public void setTbpos(int tbpos) {
        this.tbpos = tbpos;
    }
    public String getZmatid() {
        return zmatid;
    }
    public void setZmatid(String zmatid) {
        this.zmatid = zmatid;
    }
    public String getMatnr() {
        return matnr;
    }
    public void setMatnr(String matnr) {
        this.matnr = matnr;
    }
    public String getMaktx() {
        return maktx;
    }
    public void setMaktx(String maktx) {
        this.maktx = maktx;
    }
    public String getWerks() {
        return werks;
    }
    public void setWerks(String werks) {
        this.werks = werks;
    }
    public double getAnfme() {
        return anfme;
    }
    public void setAnfme(double anfme) {
        this.anfme = anfme;
    }
    public String getAltme() {
        return altme;
    }
    public void setAltme(String altme) {
        this.altme = altme;
    }
    public String getZpallet() {
        return zpallet;
    }
    public void setZpallet(String zpallet) {
        this.zpallet = zpallet;
    }
    public String getBname() {
        return bname;
    }
    public void setBname(String bname) {
        this.bname = bname;
    }
    public double getNista() {
        return nista;
    }
    public void setNista(double nista) {
        this.nista = nista;
    }
    public String getWrk_no() {
        return wrk_no;
    }
    public void setWrk_no(String wrk_no) {
        this.wrk_no = wrk_no;
    }
    public String getIo_time() {
        return io_time;
    }
    public void setIo_time(String io_time) {
        this.io_time = io_time;
    }
    /**
     * @return the mat_no
     */
    public String getMat_no() {
        return mat_no;
    }
    /**
     * @param mat_no the mat_no to set
     */
    public void setMat_no(String mat_no) {
        this.mat_no = mat_no;
    }
    
    /**
     * @return the ctns
     */
    public Long getCtns() {
        return ctns;
    }
    /**
     * @param ctns the ctns to set
     */
    public void setCtns(Long ctns) {
        this.ctns = ctns;
    }
    /**
     * @return the qty
     */
    public Long getQty() {
        return qty;
    }
    /**
     * @param qty the qty to set
     */
    public void setQty(Long qty) {
        this.qty = qty;
    }
    /**
     * @return the wt
     */
    public double getWt() {
        return wt;
    }
    /**
     * @param wt the wt to set
     */
    public void setWt(double wt) {
        this.wt = wt;
    }
    /**
     * @return the memo
     */
    public String getMemo() {
        return memo;
    }
    /**
     * @param memo the memo to set
     */
    public void setMemo(String memo) {
        this.memo = memo;
    }
    /**
     * @return the bystr1
     */
    public String getBystr1() {
        return bystr1;
    }
    /**
     * @param bystr1 the bystr1 to set
     */
    public void setBystr1(String bystr1) {
        this.bystr1 = bystr1;
    }
    /**
     * @return the bystr2
     */
    public String getBystr2() {
        return bystr2;
    }
    /**
     * @param bystr2 the bystr2 to set
     */
    public void setBystr2(String bystr2) {
        this.bystr2 = bystr2;
    }
    /**
     * @return the bystr3
     */
    public String getBystr3() {
        return bystr3;
    }
    /**
     * @param bystr3 the bystr3 to set
     */
    public void setBystr3(String bystr3) {
        this.bystr3 = bystr3;
    }
    /**
     * @return the bystr4
     */
    public String getBystr4() {
        return bystr4;
    }
    /**
     * @param bystr4 the bystr4 to set
     */
    public void setBystr4(String bystr4) {
        this.bystr4 = bystr4;
    }
    /**
     * @return the bystr5
     */
    public String getBystr5() {
        return bystr5;
    }
    /**
     * @param bystr5 the bystr5 to set
     */
    public void setBystr5(String bystr5) {
        this.bystr5 = bystr5;
    }
    /**
     * @return the bynum1
     */
    public double getBynum1() {
        return bynum1;
    }
    /**
     * @param bynum1 the bynum1 to set
     */
    public void setBynum1(double bynum1) {
        this.bynum1 = bynum1;
    }
    /**
     * @return the bynum2
     */
    public double getBynum2() {
        return bynum2;
    }
    /**
     * @param bynum2 the bynum2 to set
     */
    public void setBynum2(double bynum2) {
        this.bynum2 = bynum2;
    }
    /**
     * @return the bynum3
     */
    public double getBynum3() {
        return bynum3;
    }
    /**
     * @param bynum3 the bynum3 to set
     */
    public void setBynum3(double bynum3) {
        this.bynum3 = bynum3;
    }
    /**
     * @return the bynum4
     */
    public double getBynum4() {
        return bynum4;
    }
    /**
     * @param bynum4 the bynum4 to set
     */
    public void setBynum4(double bynum4) {
        this.bynum4 = bynum4;
    }
    /**
     * @return the bynum5
     */
    public double getBynum5() {
        return bynum5;
    }
    /**
     * @param bynum5 the bynum5 to set
     */
    public void setBynum5(double bynum5) {
        this.bynum5 = bynum5;
    }
    /**
     * @return the mat_name
     */
    public String getMat_name() {
        return mat_name;
    }
    /**
     * @param mat_name the mat_name to set
     */
    public void setMat_name(String mat_name) {
        this.mat_name = mat_name;
    }
    /**
     * @return the str1
     */
    public String getStr1() {
        return str1;
    }
    /**
     * @param str1 the str1 to set
     */
    public void setStr1(String str1) {
        this.str1 = str1;
    }
    /**
     * @return the str2
     */
    public String getStr2() {
        return str2;
    }
    /**
     * @param str2 the str2 to set
     */
    public void setStr2(String str2) {
        this.str2 = str2;
    }
    /**
     * @return the str3
     */
    public String getStr3() {
        return str3;
    }
    /**
     * @param str3 the str3 to set
     */
    public void setStr3(String str3) {
        this.str3 = str3;
    }
    /**
     * @return the str4
     */
    public String getStr4() {
        return str4;
    }
    /**
     * @param str4 the str4 to set
     */
    public void setStr4(String str4) {
        this.str4 = str4;
    }
    /**
     * @return the str5
     */
    public String getStr5() {
        return str5;
    }
    /**
     * @param str5 the str5 to set
     */
    public void setStr5(String str5) {
        this.str5 = str5;
    }
    /**
     * @return the str6
     */
    public String getStr6() {
        return str6;
    }
    /**
     * @param str6 the str6 to set
     */
    public void setStr6(String str6) {
        this.str6 = str6;
    }
    /**
     * @return the str7
     */
    public String getStr7() {
        return str7;
    }
    /**
     * @param str7 the str7 to set
     */
    public void setStr7(String str7) {
        this.str7 = str7;
    }
    /**
     * @return the str8
     */
    public String getStr8() {
        return str8;
    }
    /**
     * @param str8 the str8 to set
     */
    public void setStr8(String str8) {
        this.str8 = str8;
    }
    /**
     * @return the str9
     */
    public String getStr9() {
        return str9;
    }
    /**
     * @param str9 the str9 to set
     */
    public void setStr9(String str9) {
        this.str9 = str9;
    }
    /**
     * @return the str10
     */
    public String getStr10() {
        return str10;
    }
    /**
     * @param str10 the str10 to set
     */
    public void setStr10(String str10) {
        this.str10 = str10;
    }
    /**
     * @return the num1
     */
    public double getNum1() {
        return num1;
    }
    /**
     * @param num1 the num1 to set
     */
    public void setNum1(double num1) {
        this.num1 = num1;
    }
    /**
     * @return the num2
     */
    public double getNum2() {
        return num2;
    }
    /**
     * @param num2 the num2 to set
     */
    public void setNum2(double num2) {
        this.num2 = num2;
    }
    /**
     * @return the num3
     */
    public double getNum3() {
        return num3;
    }
    /**
     * @param num3 the num3 to set
     */
    public void setNum3(double num3) {
        this.num3 = num3;
    }
    /**
     * @return the num4
     */
    public double getNum4() {
        return num4;
    }
    /**
     * @param num4 the num4 to set
     */
    public void setNum4(double num4) {
        this.num4 = num4;
    }
    /**
     * @return the num5
     */
    public double getNum5() {
        return num5;
    }
    /**
     * @param num5 the num5 to set
     */
    public void setNum5(double num5) {
        this.num5 = num5;
    }
    /**
     * @return the modi_user
     */
    public String getModi_user() {
        return modi_user;
    }
    /**
     * @param modi_user the modi_user to set
     */
    public void setModi_user(String modi_user) {
        this.modi_user = modi_user;
    }
    /**
     * @return the modi_time
     */
    public String getModi_time() {
        return modi_time;
    }
    /**
     * @param modi_time the modi_time to set
     */
    public void setModi_time(String modi_time) {
        this.modi_time = modi_time;
    }
    /**
     * @return the pageNumber
     */
    public int getPageNumber() {
        return pageNumber;
    }
    /**
     * @param pageNumber the pageNumber to set
     */
    public void setPageNumber(int pageNumber) {
        this.pageNumber = pageNumber;
    }
    /**
     * @return the pageSize
     */
    public int getPageSize() {
        return pageSize;
    }
    /**
     * @param pageSize the pageSize to set
     */
    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }
}