ShipmentContainerHeader.java
26.3 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
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
package com.huaheng.pc.shipment.shipmentContainerHeader.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.shipmentContainerHeader.domain.ShipmentContainerHeader")
@TableName(value = "shipment_container_header")
public class ShipmentContainerHeader implements Serializable {
/**
* 出库箱内部号
*/
@TableId(value = "id", type = IdType.AUTO)
@ApiModelProperty(value="出库箱内部号")
private Integer id;
/**
* 出库箱号
*/
@TableField(value = "containerCode")
@ApiModelProperty(value="出库箱号")
private String containerCode;
/**
* 库位
*/
@TableField(value = "locationCode")
@ApiModelProperty(value="库位")
private String locationCode;
/**
* 仓库
*/
@TableField(value = "warehouseCode")
@ApiModelProperty(value="仓库")
private String warehouseCode;
/**
* 箱型
*/
@TableField(value = "containerType")
@ApiModelProperty(value="箱型")
private String containerType;
/**
* 状态
*/
@TableField(value = "status")
@ApiModelProperty(value="状态")
private Integer status;
/**
* 父
*/
@TableField(value = "parent")
@ApiModelProperty(value="父")
private Integer parent;
/**
* 重量
*/
@TableField(value = "totalWeight")
@ApiModelProperty(value="重量")
private BigDecimal totalWeight;
/**
* 体积
*/
@TableField(value = "totalVolume")
@ApiModelProperty(value="体积")
private BigDecimal totalVolume;
/**
* 长
*/
@TableField(value = "length")
@ApiModelProperty(value="长")
private BigDecimal length;
/**
* 宽
*/
@TableField(value = "width")
@ApiModelProperty(value="宽")
private BigDecimal width;
/**
* 高
*/
@TableField(value = "height")
@ApiModelProperty(value="高")
private BigDecimal height;
/**
* 价值
*/
@TableField(value = "totalValue")
@ApiModelProperty(value="价值")
private BigDecimal totalValue;
/**
* 出库单内部号
*/
@TableField(value = "shipmentId")
@ApiModelProperty(value="出库单内部号")
private Integer shipmentId;
/**
* 货主编码
*/
@TableField(value = "companyCode")
@ApiModelProperty(value="货主编码")
private String companyCode;
/**
* 数量
*/
@TableField(value = "totalQty")
@ApiModelProperty(value="数量")
private BigDecimal totalQty;
/**
* 快递单号
*/
@TableField(value = "waybillCode")
@ApiModelProperty(value="快递单号")
private String waybillCode;
/**
* 组号
*/
@TableField(value = "groupNum")
@ApiModelProperty(value="组号")
private Integer groupNum;
/**
* 序号
*/
@TableField(value = "groupIndex")
@ApiModelProperty(value="序号")
private Integer groupIndex;
/**
* 波次号
*/
@TableField(value = "waveId")
@ApiModelProperty(value="波次号")
private Integer waveId;
/**
* 货箱计数号
*/
@TableField(value = "countIndex")
@ApiModelProperty(value="货箱计数号")
private Integer countIndex;
/**
* 货箱计数总数
*/
@TableField(value = "countTotal")
@ApiModelProperty(value="货箱计数总数")
private Integer countTotal;
/**
* 任务已创建?
*/
@TableField(value = "taskCreated")
@ApiModelProperty(value="任务已创建?")
private Integer taskCreated;
/**
* 出库单号
*/
@TableField(value = "shipmentCode")
@ApiModelProperty(value="出库单号")
private String shipmentCode;
/**
* 周转箱号
*/
@TableField(value = "transContCode")
@ApiModelProperty(value="周转箱号")
private String transContCode;
/**
* 复核工作台
*/
@TableField(value = "oqcBench")
@ApiModelProperty(value="复核工作台")
private String oqcBench;
/**
* 复核用户
*/
@TableField(value = "oqcBy")
@ApiModelProperty(value="复核用户")
private String oqcBy;
/**
* 复核开始时间
*/
@TableField(value = "oqcStartAt")
@ApiModelProperty(value="复核开始时间")
private Date oqcStartAt;
/**
* 复核结束时间
*/
@TableField(value = "oqcEndAt")
@ApiModelProperty(value="复核结束时间")
private Date oqcEndAt;
/**
* 装载号
*/
@TableField(value = "loadId")
@ApiModelProperty(value="装载号")
private Integer loadId;
/**
* 笼车内部号
*/
@TableField(value = "cageId")
@ApiModelProperty(value="笼车内部号")
private Integer cageId;
/**
* 笼车号
*/
@TableField(value = "cageCode")
@ApiModelProperty(value="笼车号")
private String cageCode;
/**
* 移入笼车时间
*/
@TableField(value = "stagedAt")
@ApiModelProperty(value="移入笼车时间")
private Date stagedAt;
/**
* 移入笼车用户
*/
@TableField(value = "stagedBy")
@ApiModelProperty(value="移入笼车用户")
private String stagedBy;
/**
* 创建时间
*/
@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 = "carrierCode")
@ApiModelProperty(value="承运商")
private String carrierCode;
@TableField(value = "scaledBy")
@ApiModelProperty(value="null")
private String scaledBy;
@TableField(value = "scaledAt")
@ApiModelProperty(value="null")
private Date scaledAt;
@TableField(value = "storeCode")
@ApiModelProperty(value="null")
private String storeCode;
/**
* 拍照图片id
*/
@TableField(value = "picUrls")
@ApiModelProperty(value="拍照图片id")
private String picUrls;
/**
* 图片的ID
*/
@TableField(value = "pidIds")
@ApiModelProperty(value="图片的ID")
private String pidIds;
/**
* 实际发运时间
*/
@TableField(value = "actualShipDateTime")
@ApiModelProperty(value="实际发运时间")
private Date actualShipDateTime;
/**
* 系统创建
*/
@TableField(value = "systemCreated")
@ApiModelProperty(value="系统创建")
private Integer systemCreated;
private static final long serialVersionUID = 1L;
public static final String COL_CONTAINERCODE = "containerCode";
public static final String COL_LOCATIONCODE = "locationCode";
public static final String COL_WAREHOUSECODE = "warehouseCode";
public static final String COL_CONTAINERTYPE = "containerType";
public static final String COL_ENABLE = "enable";
public static final String COL_PARENT = "parent";
public static final String COL_TOTALWEIGHT = "totalWeight";
public static final String COL_TOTALVOLUME = "totalVolume";
public static final String COL_LENGTH = "length";
public static final String COL_WIDTH = "width";
public static final String COL_HEIGHT = "height";
public static final String COL_TOTALVALUE = "totalValue";
public static final String COL_SHIPMENTID = "shipmentId";
public static final String COL_COMPANYCODE = "companyCode";
public static final String COL_TOTALQTY = "totalQty";
public static final String COL_WAYBILLCODE = "waybillCode";
public static final String COL_GROUPNUM = "groupNum";
public static final String COL_GROUPINDEX = "groupIndex";
public static final String COL_WAVEID = "waveId";
public static final String COL_COUNTINDEX = "countIndex";
public static final String COL_COUNTTOTAL = "countTotal";
public static final String COL_TASKCREATED = "taskCreated";
public static final String COL_SHIPMENTCODE = "shipmentCode";
public static final String COL_TRANSCONTCODE = "transContCode";
public static final String COL_OQCBENCH = "oqcBench";
public static final String COL_OQCBY = "oqcBy";
public static final String COL_OQCSTARTAT = "oqcStartAt";
public static final String COL_OQCENDAT = "oqcEndAt";
public static final String COL_LOADID = "loadId";
public static final String COL_CAGEID = "cageId";
public static final String COL_CAGECODE = "cageCode";
public static final String COL_STAGEDAT = "stagedAt";
public static final String COL_STAGEDBY = "stagedBy";
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_CARRIERCODE = "carrierCode";
public static final String COL_SCALEDBY = "scaledBy";
public static final String COL_SCALEDAT = "scaledAt";
public static final String COL_STORECODE = "storeCode";
public static final String COL_PICURLS = "picUrls";
public static final String COL_PIDIDS = "pidIds";
public static final String COL_ACTUALSHIPDATETIME = "actualShipDateTime";
public static final String COL_SYSTEMCREATED = "systemCreated";
/**
* 获取出库箱内部号
*
* @return id - 出库箱内部号
*/
public Integer getId() {
return id;
}
/**
* 设置出库箱内部号
*
* @param id 出库箱内部号
*/
public void setId(Integer id) {
this.id = id;
}
/**
* 获取出库箱号
*
* @return containerCode - 出库箱号
*/
public String getContainerCode() {
return containerCode;
}
/**
* 设置出库箱号
*
* @param containerCode 出库箱号
*/
public void setContainerCode(String containerCode) {
this.containerCode = containerCode;
}
public String getLocationCode() {
return locationCode;
}
public void setLocationCode(String locationCode) {
this.locationCode = locationCode;
}
/**
* 获取仓库
*
* @return warehouseCode - 仓库
*/
public String getWarehouseCode() {
return warehouseCode;
}
/**
* 设置仓库
*
* @param warehouseCode 仓库
*/
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
/**
* 获取箱型
*
* @return containerType - 箱型
*/
public String getContainerType() {
return containerType;
}
/**
* 设置箱型
*
* @param containerType 箱型
*/
public void setContainerType(String containerType) {
this.containerType = containerType;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
/**
* 获取父
*
* @return parent - 父
*/
public Integer getParent() {
return parent;
}
/**
* 设置父
*
* @param parent 父
*/
public void setParent(Integer parent) {
this.parent = parent;
}
/**
* 获取重量
*
* @return totalWeight - 重量
*/
public BigDecimal getTotalWeight() {
return totalWeight;
}
/**
* 设置重量
*
* @param totalWeight 重量
*/
public void setTotalWeight(BigDecimal totalWeight) {
this.totalWeight = totalWeight;
}
/**
* 获取体积
*
* @return totalVolume - 体积
*/
public BigDecimal getTotalVolume() {
return totalVolume;
}
/**
* 设置体积
*
* @param totalVolume 体积
*/
public void setTotalVolume(BigDecimal totalVolume) {
this.totalVolume = totalVolume;
}
/**
* 获取长
*
* @return length - 长
*/
public BigDecimal getLength() {
return length;
}
/**
* 设置长
*
* @param length 长
*/
public void setLength(BigDecimal length) {
this.length = length;
}
/**
* 获取宽
*
* @return width - 宽
*/
public BigDecimal getWidth() {
return width;
}
/**
* 设置宽
*
* @param width 宽
*/
public void setWidth(BigDecimal width) {
this.width = width;
}
/**
* 获取高
*
* @return height - 高
*/
public BigDecimal getHeight() {
return height;
}
/**
* 设置高
*
* @param height 高
*/
public void setHeight(BigDecimal height) {
this.height = height;
}
/**
* 获取价值
*
* @return totalValue - 价值
*/
public BigDecimal getTotalValue() {
return totalValue;
}
/**
* 设置价值
*
* @param totalValue 价值
*/
public void setTotalValue(BigDecimal totalValue) {
this.totalValue = totalValue;
}
/**
* 获取出库单内部号
*
* @return shipmentId - 出库单内部号
*/
public Integer getShipmentId() {
return shipmentId;
}
/**
* 设置出库单内部号
*
* @param shipmentId 出库单内部号
*/
public void setShipmentId(Integer shipmentId) {
this.shipmentId = shipmentId;
}
/**
* 获取货主编码
*
* @return companyCode - 货主编码
*/
public String getCompanyCode() {
return companyCode;
}
/**
* 设置货主编码
*
* @param companyCode 货主编码
*/
public void setCompanyCode(String companyCode) {
this.companyCode = companyCode;
}
public BigDecimal getTotalQty() {
return totalQty;
}
public void setTotalQty(BigDecimal totalQty) {
this.totalQty = totalQty;
}
/**
* 获取快递单号
*
* @return waybillCode - 快递单号
*/
public String getWaybillCode() {
return waybillCode;
}
/**
* 设置快递单号
*
* @param waybillCode 快递单号
*/
public void setWaybillCode(String waybillCode) {
this.waybillCode = waybillCode;
}
/**
* 获取组号
*
* @return groupNum - 组号
*/
public Integer getGroupNum() {
return groupNum;
}
/**
* 设置组号
*
* @param groupNum 组号
*/
public void setGroupNum(Integer groupNum) {
this.groupNum = groupNum;
}
/**
* 获取序号
*
* @return groupIndex - 序号
*/
public Integer getGroupIndex() {
return groupIndex;
}
/**
* 设置序号
*
* @param groupIndex 序号
*/
public void setGroupIndex(Integer groupIndex) {
this.groupIndex = groupIndex;
}
/**
* 获取波次号
*
* @return waveId - 波次号
*/
public Integer getWaveId() {
return waveId;
}
/**
* 设置波次号
*
* @param waveId 波次号
*/
public void setWaveId(Integer waveId) {
this.waveId = waveId;
}
/**
* 获取货箱计数号
*
* @return countIndex - 货箱计数号
*/
public Integer getCountIndex() {
return countIndex;
}
/**
* 设置货箱计数号
*
* @param countIndex 货箱计数号
*/
public void setCountIndex(Integer countIndex) {
this.countIndex = countIndex;
}
/**
* 获取货箱计数总数
*
* @return countTotal - 货箱计数总数
*/
public Integer getCountTotal() {
return countTotal;
}
/**
* 设置货箱计数总数
*
* @param countTotal 货箱计数总数
*/
public void setCountTotal(Integer countTotal) {
this.countTotal = countTotal;
}
/**
* 获取任务已创建?
*
* @return taskCreated - 任务已创建?
*/
public Integer getTaskCreated() {
return taskCreated;
}
/**
* 设置任务已创建?
*
* @param taskCreated 任务已创建?
*/
public void setTaskCreated(Integer taskCreated) {
this.taskCreated = taskCreated;
}
/**
* 获取出库单号
*
* @return shipmentCode - 出库单号
*/
public String getShipmentCode() {
return shipmentCode;
}
/**
* 设置出库单号
*
* @param shipmentCode 出库单号
*/
public void setShipmentCode(String shipmentCode) {
this.shipmentCode = shipmentCode;
}
/**
* 获取周转箱号
*
* @return transContCode - 周转箱号
*/
public String getTransContCode() {
return transContCode;
}
/**
* 设置周转箱号
*
* @param transContCode 周转箱号
*/
public void setTransContCode(String transContCode) {
this.transContCode = transContCode;
}
/**
* 获取复核工作台
*
* @return oqcBench - 复核工作台
*/
public String getOqcBench() {
return oqcBench;
}
/**
* 设置复核工作台
*
* @param oqcBench 复核工作台
*/
public void setOqcBench(String oqcBench) {
this.oqcBench = oqcBench;
}
/**
* 获取复核用户
*
* @return oqcBy - 复核用户
*/
public String getOqcBy() {
return oqcBy;
}
/**
* 设置复核用户
*
* @param oqcBy 复核用户
*/
public void setOqcBy(String oqcBy) {
this.oqcBy = oqcBy;
}
/**
* 获取复核开始时间
*
* @return oqcStartAt - 复核开始时间
*/
public Date getOqcStartAt() {
return oqcStartAt;
}
/**
* 设置复核开始时间
*
* @param oqcStartAt 复核开始时间
*/
public void setOqcStartAt(Date oqcStartAt) {
this.oqcStartAt = oqcStartAt;
}
/**
* 获取复核结束时间
*
* @return oqcEndAt - 复核结束时间
*/
public Date getOqcEndAt() {
return oqcEndAt;
}
/**
* 设置复核结束时间
*
* @param oqcEndAt 复核结束时间
*/
public void setOqcEndAt(Date oqcEndAt) {
this.oqcEndAt = oqcEndAt;
}
/**
* 获取装载号
*
* @return loadId - 装载号
*/
public Integer getLoadId() {
return loadId;
}
/**
* 设置装载号
*
* @param loadId 装载号
*/
public void setLoadId(Integer loadId) {
this.loadId = loadId;
}
/**
* 获取笼车内部号
*
* @return cageId - 笼车内部号
*/
public Integer getCageId() {
return cageId;
}
/**
* 设置笼车内部号
*
* @param cageId 笼车内部号
*/
public void setCageId(Integer cageId) {
this.cageId = cageId;
}
/**
* 获取笼车号
*
* @return cageCode - 笼车号
*/
public String getCageCode() {
return cageCode;
}
/**
* 设置笼车号
*
* @param cageCode 笼车号
*/
public void setCageCode(String cageCode) {
this.cageCode = cageCode;
}
/**
* 获取移入笼车时间
*
* @return stagedAt - 移入笼车时间
*/
public Date getStagedAt() {
return stagedAt;
}
/**
* 设置移入笼车时间
*
* @param stagedAt 移入笼车时间
*/
public void setStagedAt(Date stagedAt) {
this.stagedAt = stagedAt;
}
/**
* 获取移入笼车用户
*
* @return stagedBy - 移入笼车用户
*/
public String getStagedBy() {
return stagedBy;
}
/**
* 设置移入笼车用户
*
* @param stagedBy 移入笼车用户
*/
public void setStagedBy(String stagedBy) {
this.stagedBy = stagedBy;
}
/**
* 获取创建时间
*
* @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 carrierCode - 承运商
*/
public String getCarrierCode() {
return carrierCode;
}
/**
* 设置承运商
*
* @param carrierCode 承运商
*/
public void setCarrierCode(String carrierCode) {
this.carrierCode = carrierCode;
}
/**
* @return scaledBy
*/
public String getScaledBy() {
return scaledBy;
}
/**
* @param scaledBy
*/
public void setScaledBy(String scaledBy) {
this.scaledBy = scaledBy;
}
/**
* @return scaledAt
*/
public Date getScaledAt() {
return scaledAt;
}
/**
* @param scaledAt
*/
public void setScaledAt(Date scaledAt) {
this.scaledAt = scaledAt;
}
/**
* @return storeCode
*/
public String getStoreCode() {
return storeCode;
}
/**
* @param storeCode
*/
public void setStoreCode(String storeCode) {
this.storeCode = storeCode;
}
/**
* 获取拍照图片id
*
* @return picUrls - 拍照图片id
*/
public String getPicUrls() {
return picUrls;
}
/**
* 设置拍照图片id
*
* @param picUrls 拍照图片id
*/
public void setPicUrls(String picUrls) {
this.picUrls = picUrls;
}
/**
* 获取图片的ID
*
* @return pidIds - 图片的ID
*/
public String getPidIds() {
return pidIds;
}
/**
* 设置图片的ID
*
* @param pidIds 图片的ID
*/
public void setPidIds(String pidIds) {
this.pidIds = pidIds;
}
/**
* 获取实际发运时间
*
* @return actualShipDateTime - 实际发运时间
*/
public Date getActualShipDateTime() {
return actualShipDateTime;
}
/**
* 设置实际发运时间
*
* @param actualShipDateTime 实际发运时间
*/
public void setActualShipDateTime(Date actualShipDateTime) {
this.actualShipDateTime = actualShipDateTime;
}
/**
* 获取系统创建
*
* @return systemCreated - 系统创建
*/
public Integer getSystemCreated() {
return systemCreated;
}
/**
* 设置系统创建
*
* @param systemCreated 系统创建
*/
public void setSystemCreated(Integer systemCreated) {
this.systemCreated = systemCreated;
}
}