ShipmentDetail.java
20.5 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
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
package com.huaheng.pc.shipment.shipmentDetail.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.math.BigDecimal;
import java.util.Date;
@ApiModel(value="com.huaheng.pc.shipment.shipmentDetail.domain.ShipmentDetail")
@TableName(value = "shipment_detail")
public class ShipmentDetail implements Serializable {
/**
* 出库单内部行号
*/
@TableId(value = "id", type = IdType.AUTO)
@ApiModelProperty(value="出库单内部行号")
private Integer id;
/**
* 出库单内部号
*/
@TableField(value = "shipmentId")
@ApiModelProperty(value="出库单内部号")
private Integer shipmentId;
/**
* 仓库
*/
@TableField(value = "warehouseCode")
@ApiModelProperty(value="仓库")
private String warehouseCode;
/**
* 货主
*/
@TableField(value = "companyCode")
@ApiModelProperty(value="货主")
private String companyCode;
@TableField(exist = false)
private String companyName;
@TableField(exist = false)
private BigDecimal inventoryQty;
/**
* 出库单号
*/
@TableField(value = "shipmentCode")
@ApiModelProperty(value="出库单号")
private String shipmentCode;
/**
* 上游订单号
*/
@TableField(value = "referCode")
@ApiModelProperty(value="上游订单号")
private String referCode;
/**
* 上游订单内部号
*/
@TableField(value = "referId")
@ApiModelProperty(value="上游订单内部号")
private Integer referId;
/**
* 上游订单行号
*/
@TableField(value = "referLineNum")
@ApiModelProperty(value="上游订单行号")
private String referLineNum;
/**
* 物料
*/
@TableField(value = "materialCode")
@ApiModelProperty(value="物料")
private String materialCode;
/**
* 物料描述
*/
@TableField(value = "materialName")
@ApiModelProperty(value="物料描述")
private String materialName;
/**
* 物料规格
*/
@TableField(value = "materialSpec")
@ApiModelProperty(value="物料规格")
private String materialSpec;
/**
* 物料单位
*/
@TableField(value = "materialUnit")
@ApiModelProperty(value="物料单位")
private String materialUnit;
/**
* 发货数量
*/
@TableField(value = "shipQty")
@ApiModelProperty(value="发货数量")
private BigDecimal shipQty;
/**
* 已出数量
*/
@TableField(value = "requestQty")
@ApiModelProperty(value="已出数量")
private BigDecimal requestQty;
/**
* 分配规则
*/
@TableField(value = "allocationRule")
@ApiModelProperty(value="分配规则")
private String allocationRule;
/**
* 补货规则
*/
@TableField(value = "replenishmentRule")
@ApiModelProperty(value="补货规则")
private String replenishmentRule;
/**
* 拣货货位
*/
@TableField(value = "pickLocs")
@ApiModelProperty(value="拣货货位")
private String pickLocs;
/**
* 属性1
*/
@TableField(value = "attribute1")
@ApiModelProperty(value="属性1")
private String attribute1;
/**
* 属性2
*/
@TableField(value = "attribute2")
@ApiModelProperty(value="属性2")
private String attribute2;
/**
* 属性3
*/
@TableField(value = "attribute3")
@ApiModelProperty(value="属性3")
private String attribute3;
/**
* 属性4
*/
@TableField(value = "attribute4")
@ApiModelProperty(value="属性4")
private String attribute4;
/**
* 批次
*/
@TableField(value = "batch")
@ApiModelProperty(value="批次")
private String batch;
/**
* 批号
*/
@TableField(value = "lot")
@ApiModelProperty(value="批号")
private String lot;
/**
* 项目号
*/
@TableField(value = "projectNo")
@ApiModelProperty(value="项目号")
private String projectNo;
/**
* 出库口
*/
@TableField(value = "port")
@ApiModelProperty(value="出库口")
private String port;
/**
* 生产日期
*/
@TableField(value = "manufactureDate")
@ApiModelProperty(value="生产日期")
private Date manufactureDate;
/**
* 失效日期
*/
@TableField(value = "expirationDate")
@ApiModelProperty(value="失效日期")
private Date expirationDate;
/**
* 入库日期
*/
@TableField(value = "agingDate")
@ApiModelProperty(value="入库日期")
private Date agingDate;
/**
* 库存状态
*/
@TableField(value = "inventorySts")
@ApiModelProperty(value="库存状态")
private String inventorySts;
/**
* 月台货位
*/
@TableField(value = "dockLoc")
@ApiModelProperty(value="月台货位")
private String dockLoc;
/**
* 包装分类
*/
@TableField(value = "packingClass")
@ApiModelProperty(value="包装分类")
private String packingClass;
/**
* 状态
*/
@TableField(value = "status")
@ApiModelProperty(value="状态")
private Integer status;
/**
* 波次号
*/
@TableField(value = "waveId")
@ApiModelProperty(value="波次号")
private Integer waveId;
/**
* 创建时间
*/
@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;
/**
* 处理标记
*/
@TableField(value = "processStamp")
@ApiModelProperty(value="处理标记")
private String processStamp;
private static final long serialVersionUID = 1L;
/**
* 获取出库单内部行号
*
* @return id - 出库单内部行号
*/
public Integer getId() {
return id;
}
/**
* 设置出库单内部行号
*
* @param id 出库单内部行号
*/
public void setId(Integer id) {
this.id = id;
}
/**
* 获取出库单内部号
*
* @return shipmentId - 出库单内部号
*/
public Integer getShipmentId() {
return shipmentId;
}
/**
* 设置出库单内部号
*
* @param shipmentId 出库单内部号
*/
public void setShipmentId(Integer shipmentId) {
this.shipmentId = shipmentId;
}
/**
* 获取仓库
*
* @return warehouseCode - 仓库
*/
public String getWarehouseCode() {
return warehouseCode;
}
/**
* 设置仓库
*
* @param warehouseCode 仓库
*/
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
/**
* 获取货主
*
* @return companyCode - 货主
*/
public String getCompanyCode() {
return companyCode;
}
/**
* 设置货主
*
* @param companyCode 货主
*/
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
/**
* 获取出库单号
*
* @return shipmentCode - 出库单号
*/
public String getShipmentCode() {
return shipmentCode;
}
/**
* 设置出库单号
*
* @param shipmentCode 出库单号
*/
public void setShipmentCode(String shipmentCode) {
this.shipmentCode = shipmentCode;
}
/**
* 获取上游订单号
*
* @return referCode - 上游订单号
*/
public String getReferCode() {
return referCode;
}
/**
* 设置上游订单号
*
* @param referCode 上游订单号
*/
public void setReferCode(String referCode) {
this.referCode = referCode;
}
/**
* 获取上游订单内部号
*
* @return referId - 上游订单内部号
*/
public Integer getReferId() {
return referId;
}
/**
* 设置上游订单内部号
*
* @param referId 上游订单内部号
*/
public void setReferId(Integer referId) {
this.referId = referId;
}
/**
* 获取上游订单行号
*
* @return referLineNum - 上游订单行号
*/
public String getReferLineNum() {
return referLineNum;
}
/**
* 设置上游订单行号
*
* @param referLineNum 上游订单行号
*/
public void setReferLineNum(String referLineNum) {
this.referLineNum = referLineNum;
}
/**
* 获取物料
*
* @return materialCode - 物料
*/
public String getMaterialCode() {
return materialCode;
}
/**
* 设置物料
*
* @param materialCode 物料
*/
public void setMaterialCode(String materialCode) {
this.materialCode = materialCode;
}
/**
* 获取物料描述
*
* @return materialName - 物料描述
*/
public String getMaterialName() {
return materialName;
}
/**
* 设置物料描述
*
* @param materialName 物料描述
*/
public void setMaterialName(String materialName) {
this.materialName = materialName;
}
/**
* 获取物料规格
*
* @return materialSpec - 物料规格
*/
public String getMaterialSpec() {
return materialSpec;
}
/**
* 设置物料规格
*
* @param materialSpec 物料规格
*/
public void setMaterialSpec(String materialSpec) {
this.materialSpec = materialSpec;
}
/**
* 获取物料单位
*
* @return materialUnit - 物料单位
*/
public String getMaterialUnit() {
return materialUnit;
}
/**
* 设置物料单位
*
* @param materialUnit 物料单位
*/
public void setMaterialUnit(String materialUnit) {
this.materialUnit = materialUnit;
}
public BigDecimal getShipQty() {
return shipQty;
}
public void setShipQty(BigDecimal shipQty) {
this.shipQty = shipQty;
}
public BigDecimal getRequestQty() {
return requestQty;
}
public void setRequestQty(BigDecimal requestQty) {
this.requestQty = requestQty;
}
/**
* 获取分配规则
*
* @return allocationRule - 分配规则
*/
public String getAllocationRule() {
return allocationRule;
}
/**
* 设置分配规则
*
* @param allocationRule 分配规则
*/
public void setAllocationRule(String allocationRule) {
this.allocationRule = allocationRule;
}
/**
* 获取补货规则
*
* @return replenishmentRule - 补货规则
*/
public String getReplenishmentRule() {
return replenishmentRule;
}
/**
* 设置补货规则
*
* @param replenishmentRule 补货规则
*/
public void setReplenishmentRule(String replenishmentRule) {
this.replenishmentRule = replenishmentRule;
}
/**
* 获取拣货货位
*
* @return pickLocs - 拣货货位
*/
public String getPickLocs() {
return pickLocs;
}
/**
* 设置拣货货位
*
* @param pickLocs 拣货货位
*/
public void setPickLocs(String pickLocs) {
this.pickLocs = pickLocs;
}
/**
* 获取属性1
*
* @return attribute1 - 属性1
*/
public String getAttribute1() {
return attribute1;
}
/**
* 设置属性1
*
* @param attribute1 属性1
*/
public void setAttribute1(String attribute1) {
this.attribute1 = attribute1;
}
/**
* 获取属性2
*
* @return attribute2 - 属性2
*/
public String getAttribute2() {
return attribute2;
}
/**
* 设置属性2
*
* @param attribute2 属性2
*/
public void setAttribute2(String attribute2) {
this.attribute2 = attribute2;
}
/**
* 获取属性3
*
* @return attribute3 - 属性3
*/
public String getAttribute3() {
return attribute3;
}
/**
* 设置属性3
*
* @param attribute3 属性3
*/
public void setAttribute3(String attribute3) {
this.attribute3 = attribute3;
}
/**
* 获取属性4
*
* @return attribute4 - 属性4
*/
public String getAttribute4() {
return attribute4;
}
/**
* 设置属性4
*
* @param attribute4 属性4
*/
public void setAttribute4(String attribute4) {
this.attribute4 = attribute4;
}
/**
* 获取批次
*
* @return batch - 批次
*/
public String getBatch() {
return batch;
}
/**
* 设置批次
*
* @param batch 批次
*/
public void setBatch(String batch) {
this.batch = batch;
}
/**
* 获取批号
*
* @return lot - 批号
*/
public String getLot() {
return lot;
}
/**
* 设置批号
*
* @param lot 批号
*/
public void setLot(String lot) {
this.lot = lot;
}
/**
* 获取项目号
*
* @return projectNo - 项目号
*/
public String getProjectNo() {
return projectNo;
}
/**
* 设置项目号
*
* @param projectNo 项目号
*/
public void setProjectNo(String projectNo) {
this.projectNo = projectNo;
}
/**
* 获取生产日期
*
* @return manufactureDate - 生产日期
*/
public Date getManufactureDate() {
return manufactureDate;
}
/**
* 设置生产日期
*
* @param manufactureDate 生产日期
*/
public void setManufactureDate(Date manufactureDate) {
this.manufactureDate = manufactureDate;
}
/**
* 获取失效日期
*
* @return expirationDate - 失效日期
*/
public Date getExpirationDate() {
return expirationDate;
}
/**
* 设置失效日期
*
* @param expirationDate 失效日期
*/
public void setExpirationDate(Date expirationDate) {
this.expirationDate = expirationDate;
}
/**
* 获取入库日期
*
* @return agingDate - 入库日期
*/
public Date getAgingDate() {
return agingDate;
}
/**
* 设置入库日期
*
* @param agingDate 入库日期
*/
public void setAgingDate(Date agingDate) {
this.agingDate = agingDate;
}
/**
* 获取库存状态
*
* @return inventorySts - 库存状态
*/
public String getInventorySts() {
return inventorySts;
}
/**
* 设置库存状态
*
* @param inventorySts 库存状态
*/
public void setInventorySts(String inventorySts) {
this.inventorySts = inventorySts;
}
/**
* 获取月台货位
*
* @return dockLoc - 月台货位
*/
public String getDockLoc() {
return dockLoc;
}
/**
* 设置月台货位
*
* @param dockLoc 月台货位
*/
public void setDockLoc(String dockLoc) {
this.dockLoc = dockLoc;
}
/**
* 获取包装分类
*
* @return packingClass - 包装分类
*/
public String getPackingClass() {
return packingClass;
}
/**
* 设置包装分类
*
* @param packingClass 包装分类
*/
public void setPackingClass(String packingClass) {
this.packingClass = packingClass;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
/**
* 获取波次号
*
* @return waveId - 波次号
*/
public Integer getWaveId() {
return waveId;
}
/**
* 设置波次号
*
* @param waveId 波次号
*/
public void setWaveId(Integer waveId) {
this.waveId = waveId;
}
/**
* 获取创建时间
*
* @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;
}
/**
* 获取处理标记
*
* @return processStamp - 处理标记
*/
public String getProcessStamp() {
return processStamp;
}
public String getPort() {
return port;
}
public void setPort(String port) {
this.port = port;
}
/**
* 设置处理标记
*
* @param processStamp 处理标记
*/
public void setProcessStamp(String processStamp) {
this.processStamp = processStamp;
}
public BigDecimal getInventoryQty() {
return inventoryQty;
}
public void setInventoryQty(BigDecimal inventoryQty) {
this.inventoryQty = inventoryQty;
}
public String getCompanyName() {
return companyName;
}
public void setCompanyName(String companyName) {
this.companyName = companyName;
}
}