ReceiptPreference.java
18.6 KB
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
package com.huaheng.pc.receipt.receiptPreference.domain;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Date;
@ApiModel(value="com.huaheng.pc.receipt.receiptPreference.domain.ReceiptPreference")
@TableName(value = "receipt_preference")
public class ReceiptPreference implements Serializable {
/**
* ID
*/
@TableId(value = "id", type = IdType.AUTO)
@ApiModelProperty(value="ID")
private Integer id;
/**
* 首选项代码
*/
@TableField(value = "code")
@ApiModelProperty(value="首选项代码")
private String code;
@TableField(value = "name")
@ApiModelProperty(value="null")
private String name;
/**
* 入库流程
*/
@TableField(value = "receivingFlow")
@ApiModelProperty(value="入库流程")
private String receivingFlow;
/**
* 仓库
*/
@TableField(value = "warehouseCode")
@ApiModelProperty(value="仓库")
private String warehouseCode;
/**
* 自动生成托盘号
*/
@TableField(value = "autoAssignLPN")
@ApiModelProperty(value="自动生成托盘号")
private Integer autoAssignLPN;
/**
* 允许超收
*/
@TableField(value = "allowOverReceiving")
@ApiModelProperty(value="允许超收")
private Integer allowOverReceiving;
/**
* 允许超收范围
*/
@TableField(value = "allowOverReceivingQty")
@ApiModelProperty(value="允许超收范围")
private Integer allowOverReceivingQty;
/**
* 自动定位
*/
@TableField(value = "autoLocate")
@ApiModelProperty(value="自动定位")
private Integer autoLocate;
/**
* RF显示未收数量
*/
@TableField(value = "showOpenQty")
@ApiModelProperty(value="RF显示未收数量")
private Integer showOpenQty;
/**
* 入库单类型
*/
@TableField(value = "receiptTypes")
@ApiModelProperty(value="入库单类型")
private String receiptTypes;
/**
* RF组车收货
*/
@TableField(value = "groupPutaway")
@ApiModelProperty(value="RF组车收货")
private Integer groupPutaway;
/**
* 人工组盘
*/
@TableField(value = "manuallyBuildLPN")
@ApiModelProperty(value="人工组盘")
private Integer manuallyBuildLPN;
/**
* 定位规则动态指派
*/
@TableField(value = "ruleAssignment")
@ApiModelProperty(value="定位规则动态指派")
private String ruleAssignment;
/**
* RF逐件收货
*/
@TableField(value = "checkinByPiece")
@ApiModelProperty(value="RF逐件收货")
private Integer checkinByPiece;
/**
* RF自动提交收货
*/
@TableField(value = "pieceConfirm")
@ApiModelProperty(value="RF自动提交收货")
private Integer pieceConfirm;
/**
* RF快速上架
*/
@TableField(value = "allowQuickPutaway")
@ApiModelProperty(value="RF快速上架")
private Integer allowQuickPutaway;
/**
* 快速入库
*/
@TableField(value = "useQuickCheckIn")
@ApiModelProperty(value="快速入库")
private Integer useQuickCheckIn;
/**
* 创建时间
*/
@TableField(value = "created")
@ApiModelProperty(value="创建时间")
private Date created;
/**
* 创建用户
*/
@TableField(value = "createdBy")
@ApiModelProperty(value="创建用户")
private String createdBy;
/**
* 创建时间
*/
@TableField(value = "lastUpdated")
@ApiModelProperty(value="创建时间")
private Date lastUpdated;
/**
* 更新用户
*/
@TableField(value = "lastUpdatedBy")
@ApiModelProperty(value="更新用户")
private String lastUpdatedBy;
/**
* 数据版本
*/
@TableField(value = "version")
@ApiModelProperty(value="数据版本")
private Integer version;
/**
* 自定义字段1
*/
@TableField(value = "userDef1")
@ApiModelProperty(value="自定义字段1")
private String userDef1;
/**
* 自定义字段2
*/
@TableField(value = "userDef2")
@ApiModelProperty(value="自定义字段2")
private String userDef2;
/**
* 自定义字段3
*/
@TableField(value = "userDef3")
@ApiModelProperty(value="自定义字段3")
private String userDef3;
/**
* 自定义字段4
*/
@TableField(value = "userDef4")
@ApiModelProperty(value="自定义字段4")
private String userDef4;
/**
* 自定义字段5
*/
@TableField(value = "userDef5")
@ApiModelProperty(value="自定义字段5")
private String userDef5;
/**
* 自定义字段6
*/
@TableField(value = "userDef6")
@ApiModelProperty(value="自定义字段6")
private String userDef6;
/**
* 自定义字段7
*/
@TableField(value = "userDef7")
@ApiModelProperty(value="自定义字段7")
private String userDef7;
/**
* 自定义字段8
*/
@TableField(value = "userDef8")
@ApiModelProperty(value="自定义字段8")
private String userDef8;
/**
* 处理标记
*/
@TableField(value = "processStamp")
@ApiModelProperty(value="处理标记")
private String processStamp;
private static final long serialVersionUID = 1L;
public static final String COL_CODE = "code";
public static final String COL_NAME = "name";
public static final String COL_RECEIVINGFLOW = "receivingFlow";
public static final String COL_WAREHOUSECODE = "warehouseCode";
public static final String COL_AUTOASSIGNLPN = "autoAssignLPN";
public static final String COL_ALLOWOVERRECEIVING = "allowOverReceiving";
public static final String COL_ALLOWOVERRECEIVINGQTY = "allowOverReceivingQty";
public static final String COL_AUTOLOCATE = "autoLocate";
public static final String COL_SHOWOPENQTY = "showOpenQty";
public static final String COL_RECEIPTTYPES = "receiptTypes";
public static final String COL_GROUPPUTAWAY = "groupPutaway";
public static final String COL_MANUALLYBUILDLPN = "manuallyBuildLPN";
public static final String COL_RULEASSIGNMENT = "ruleAssignment";
public static final String COL_CHECKINBYPIECE = "checkinByPiece";
public static final String COL_PIECECONFIRM = "pieceConfirm";
public static final String COL_ALLOWQUICKPUTAWAY = "allowQuickPutaway";
public static final String COL_USEQUICKCHECKIN = "useQuickCheckIn";
public static final String COL_CREATED = "created";
public static final String COL_CREATEDBY = "createdBy";
public static final String COL_LASTUPDATED = "lastUpdated";
public static final String COL_LASTUPDATEDBY = "lastUpdatedBy";
public static final String COL_VERSION = "version";
public static final String COL_USERDEF1 = "userDef1";
public static final String COL_USERDEF2 = "userDef2";
public static final String COL_USERDEF3 = "userDef3";
public static final String COL_USERDEF4 = "userDef4";
public static final String COL_USERDEF5 = "userDef5";
public static final String COL_USERDEF6 = "userDef6";
public static final String COL_USERDEF7 = "userDef7";
public static final String COL_USERDEF8 = "userDef8";
public static final String COL_PROCESSSTAMP = "processStamp";
/**
* 获取ID
*
* @return id - ID
*/
public Integer getId() {
return id;
}
/**
* 设置ID
*
* @param id ID
*/
public void setId(Integer id) {
this.id = id;
}
/**
* 获取首选项代码
*
* @return code - 首选项代码
*/
public String getCode() {
return code;
}
/**
* 设置首选项代码
*
* @param code 首选项代码
*/
public void setCode(String code) {
this.code = code;
}
/**
* @return name
*/
public String getName() {
return name;
}
/**
* @param name
*/
public void setName(String name) {
this.name = name;
}
/**
* 获取入库流程
*
* @return receivingFlow - 入库流程
*/
public String getReceivingFlow() {
return receivingFlow;
}
/**
* 设置入库流程
*
* @param receivingFlow 入库流程
*/
public void setReceivingFlow(String receivingFlow) {
this.receivingFlow = receivingFlow;
}
/**
* 获取仓库
*
* @return warehouseCode - 仓库
*/
public String getWarehouseCode() {
return warehouseCode;
}
/**
* 设置仓库
*
* @param warehouseCode 仓库
*/
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
/**
* 获取自动生成托盘号
*
* @return autoAssignLPN - 自动生成托盘号
*/
public Integer getAutoAssignLPN() {
return autoAssignLPN;
}
/**
* 设置自动生成托盘号
*
* @param autoAssignLPN 自动生成托盘号
*/
public void setAutoAssignLPN(Integer autoAssignLPN) {
this.autoAssignLPN = autoAssignLPN;
}
/**
* 获取允许超收
*
* @return allowOverReceiving - 允许超收
*/
public Integer getAllowOverReceiving() {
return allowOverReceiving;
}
/**
* 设置允许超收
*
* @param allowOverReceiving 允许超收
*/
public void setAllowOverReceiving(Integer allowOverReceiving) {
this.allowOverReceiving = allowOverReceiving;
}
/**
* 获取允许超收范围
*
* @return allowOverReceivingQty - 允许超收范围
*/
public Integer getAllowOverReceivingQty() {
return allowOverReceivingQty;
}
/**
* 设置允许超收范围
*
* @param allowOverReceivingQty 允许超收范围
*/
public void setAllowOverReceivingQty(Integer allowOverReceivingQty) {
this.allowOverReceivingQty = allowOverReceivingQty;
}
/**
* 获取自动定位
*
* @return autoLocate - 自动定位
*/
public Integer getAutoLocate() {
return autoLocate;
}
/**
* 设置自动定位
*
* @param autoLocate 自动定位
*/
public void setAutoLocate(Integer autoLocate) {
this.autoLocate = autoLocate;
}
/**
* 获取RF显示未收数量
*
* @return showOpenQty - RF显示未收数量
*/
public Integer getShowOpenQty() {
return showOpenQty;
}
/**
* 设置RF显示未收数量
*
* @param showOpenQty RF显示未收数量
*/
public void setShowOpenQty(Integer showOpenQty) {
this.showOpenQty = showOpenQty;
}
/**
* 获取入库单类型
*
* @return receiptTypes - 入库单类型
*/
public String getReceiptTypes() {
return receiptTypes;
}
/**
* 设置入库单类型
*
* @param receiptTypes 入库单类型
*/
public void setReceiptTypes(String receiptTypes) {
this.receiptTypes = receiptTypes;
}
/**
* 获取RF组车收货
*
* @return groupPutaway - RF组车收货
*/
public Integer getGroupPutaway() {
return groupPutaway;
}
/**
* 设置RF组车收货
*
* @param groupPutaway RF组车收货
*/
public void setGroupPutaway(Integer groupPutaway) {
this.groupPutaway = groupPutaway;
}
/**
* 获取人工组盘
*
* @return manuallyBuildLPN - 人工组盘
*/
public Integer getManuallyBuildLPN() {
return manuallyBuildLPN;
}
/**
* 设置人工组盘
*
* @param manuallyBuildLPN 人工组盘
*/
public void setManuallyBuildLPN(Integer manuallyBuildLPN) {
this.manuallyBuildLPN = manuallyBuildLPN;
}
/**
* 获取定位规则动态指派
*
* @return ruleAssignment - 定位规则动态指派
*/
public String getRuleAssignment() {
return ruleAssignment;
}
/**
* 设置定位规则动态指派
*
* @param ruleAssignment 定位规则动态指派
*/
public void setRuleAssignment(String ruleAssignment) {
this.ruleAssignment = ruleAssignment;
}
/**
* 获取RF逐件收货
*
* @return checkinByPiece - RF逐件收货
*/
public Integer getCheckinByPiece() {
return checkinByPiece;
}
/**
* 设置RF逐件收货
*
* @param checkinByPiece RF逐件收货
*/
public void setCheckinByPiece(Integer checkinByPiece) {
this.checkinByPiece = checkinByPiece;
}
/**
* 获取RF自动提交收货
*
* @return pieceConfirm - RF自动提交收货
*/
public Integer getPieceConfirm() {
return pieceConfirm;
}
/**
* 设置RF自动提交收货
*
* @param pieceConfirm RF自动提交收货
*/
public void setPieceConfirm(Integer pieceConfirm) {
this.pieceConfirm = pieceConfirm;
}
/**
* 获取RF快速上架
*
* @return allowQuickPutaway - RF快速上架
*/
public Integer getAllowQuickPutaway() {
return allowQuickPutaway;
}
/**
* 设置RF快速上架
*
* @param allowQuickPutaway RF快速上架
*/
public void setAllowQuickPutaway(Integer allowQuickPutaway) {
this.allowQuickPutaway = allowQuickPutaway;
}
/**
* 获取快速入库
*
* @return useQuickCheckIn - 快速入库
*/
public Integer getUseQuickCheckIn() {
return useQuickCheckIn;
}
/**
* 设置快速入库
*
* @param useQuickCheckIn 快速入库
*/
public void setUseQuickCheckIn(Integer useQuickCheckIn) {
this.useQuickCheckIn = useQuickCheckIn;
}
/**
* 获取创建时间
*
* @return created - 创建时间
*/
public Date getCreated() {
return created;
}
/**
* 设置创建时间
*
* @param created 创建时间
*/
public void setCreated(Date created) {
this.created = created;
}
/**
* 获取创建用户
*
* @return createdBy - 创建用户
*/
public String getCreatedBy() {
return createdBy;
}
/**
* 设置创建用户
*
* @param createdBy 创建用户
*/
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
/**
* 获取创建时间
*
* @return lastUpdated - 创建时间
*/
public Date getLastUpdated() {
return lastUpdated;
}
/**
* 设置创建时间
*
* @param lastUpdated 创建时间
*/
public void setLastUpdated(Date lastUpdated) {
this.lastUpdated = lastUpdated;
}
/**
* 获取更新用户
*
* @return lastUpdatedBy - 更新用户
*/
public String getLastUpdatedBy() {
return lastUpdatedBy;
}
/**
* 设置更新用户
*
* @param lastUpdatedBy 更新用户
*/
public void setLastUpdatedBy(String lastUpdatedBy) {
this.lastUpdatedBy = lastUpdatedBy;
}
/**
* 获取数据版本
*
* @return version - 数据版本
*/
public Integer getVersion() {
return version;
}
/**
* 设置数据版本
*
* @param version 数据版本
*/
public void setVersion(Integer version) {
this.version = version;
}
/**
* 获取自定义字段1
*
* @return userDef1 - 自定义字段1
*/
public String getUserDef1() {
return userDef1;
}
/**
* 设置自定义字段1
*
* @param userDef1 自定义字段1
*/
public void setUserDef1(String userDef1) {
this.userDef1 = userDef1;
}
/**
* 获取自定义字段2
*
* @return userDef2 - 自定义字段2
*/
public String getUserDef2() {
return userDef2;
}
/**
* 设置自定义字段2
*
* @param userDef2 自定义字段2
*/
public void setUserDef2(String userDef2) {
this.userDef2 = userDef2;
}
/**
* 获取自定义字段3
*
* @return userDef3 - 自定义字段3
*/
public String getUserDef3() {
return userDef3;
}
/**
* 设置自定义字段3
*
* @param userDef3 自定义字段3
*/
public void setUserDef3(String userDef3) {
this.userDef3 = userDef3;
}
/**
* 获取自定义字段4
*
* @return userDef4 - 自定义字段4
*/
public String getUserDef4() {
return userDef4;
}
/**
* 设置自定义字段4
*
* @param userDef4 自定义字段4
*/
public void setUserDef4(String userDef4) {
this.userDef4 = userDef4;
}
/**
* 获取自定义字段5
*
* @return userDef5 - 自定义字段5
*/
public String getUserDef5() {
return userDef5;
}
/**
* 设置自定义字段5
*
* @param userDef5 自定义字段5
*/
public void setUserDef5(String userDef5) {
this.userDef5 = userDef5;
}
/**
* 获取自定义字段6
*
* @return userDef6 - 自定义字段6
*/
public String getUserDef6() {
return userDef6;
}
/**
* 设置自定义字段6
*
* @param userDef6 自定义字段6
*/
public void setUserDef6(String userDef6) {
this.userDef6 = userDef6;
}
/**
* 获取自定义字段7
*
* @return userDef7 - 自定义字段7
*/
public String getUserDef7() {
return userDef7;
}
/**
* 设置自定义字段7
*
* @param userDef7 自定义字段7
*/
public void setUserDef7(String userDef7) {
this.userDef7 = userDef7;
}
/**
* 获取自定义字段8
*
* @return userDef8 - 自定义字段8
*/
public String getUserDef8() {
return userDef8;
}
/**
* 设置自定义字段8
*
* @param userDef8 自定义字段8
*/
public void setUserDef8(String userDef8) {
this.userDef8 = userDef8;
}
/**
* 获取处理标记
*
* @return processStamp - 处理标记
*/
public String getProcessStamp() {
return processStamp;
}
/**
* 设置处理标记
*
* @param processStamp 处理标记
*/
public void setProcessStamp(String processStamp) {
this.processStamp = processStamp;
}
}