自动化立体仓库 - WMS系统
13
zhang
2025-05-26 b9d80dfdb1cef36c9edb8bf6b2fdf9e6e1708d2b
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
package com.zy.nc.vo;
 
import lombok.Data;
 
/**
 * 入库单表体实体类
 */
@Data
public class GeneralInBodyVO {
 
 
    /**
     * 来源单据表体主键(必填)
     */
    private String csourcebillbid;
 
    /**
     * 来源单据主键(必填)
     */
    private String csourcebillhid;
 
    /**
     * 来源单据类型(必填)
     */
    private String csourcetype;
 
    /**
     * 实收主数量(必填)
     */
    private Double nnum;
 
    /**
     * 应收主数量(必填)
     */
    private Double nshouldnum;
 
    /**
     * 单据行是否条码关闭
     */
    private Boolean bbarcodeclose;
 
    /**
     * 批次是否封存
     */
    private Boolean bcseal;
 
    /**
     * 是否已传存货核算
     */
    private Boolean bhasiabill;
 
    /**
     * 是否在途
     */
    private Boolean bonroadflag;
 
    /**
     * 客户
     */
    private String casscustid;
 
    /**
     * 单位
     */
    private String castunitid;
 
    /**
     * 出入库类型
     */
    private String cbodytranstypecode;
 
    /**
     * 库存仓库
     */
    private String cbodywarehouseid;
 
    /**
     * 对应入库单表体主键
     */
    private String ccorrespondbid;
 
    /**
     * 对应入库单单据号
     */
    private String ccorrespondcode;
 
    /**
     * 对应入库单主键
     */
    private String ccorrespondhid;
 
    /**
     * 对应入库单行号
     */
    private String ccorrespondrowno;
 
    /**
     * 对应入库单交易类型
     */
    private String ccorrespondtranstype;
 
    /**
     * 对应入库单类型
     */
    private String ccorrespondtype;
 
    /**
     * 特征码
     */
    private String cffileid;
 
    /**
     * 源头单据表体主键
     */
    private String cfirstbillbid;
 
    /**
     * 源头单据表头主键
     */
    private String cfirstbillhid;
 
    /**
     * 源头单据交易类型
     */
    private String cfirsttranstype;
 
    /**
     * 源头单据类型
     */
    private String cfirsttype;
 
    /**
     * 入库单表体主键
     */
    private String cgeneralbid;
 
    /**
     * 入库利润中心
     */
    private String cliabilityoid;
 
    /**
     * 入库利润中心
     */
    private String cliabilityvid;
 
    /**
     * 货位
     */
    private String clocationid;
 
    /**
     * 物料
     */
    private String cmaterialoid;
 
    /**
     * 物料编码
     */
    private String cmaterialvid;
 
    /**
     * 公司最新版本
     */
    private String corpoid;
 
    /**
     * 公司
     */
    private String corpvid;
 
    /**
     * 生产厂商
     */
    private String cproductorid;
 
    /**
     * 项目
     */
    private String cprojectid;
 
    /**
     * 质量等级
     */
    private String cqualitylevelid;
 
    /**
     * 行号
     */
    private String crowno;
 
    /**
     * 选择拆解单位
     */
    private String cselastunitid;
 
    /**
     * 序列号质量等级
     */
    private String csnqualitylevelid;
 
    /**
     * 序列号单位
     */
    private String csnunitid;
 
    /**
     * 来源单据交易类型
     */
    private String csourcetranstype;
 
    /**
     * 其他来源单行主键
     */
    private String csrc2billbid;
 
    /**
     * 其他来源单主键
     */
    private String csrc2billhid;
 
    /**
     * 其他来源单据类型编码
     */
    private String csrc2billtype;
 
    /**
     * 其他来源交易类型编码
     */
    private String csrc2transtype;
 
    /**
     * 库存状态
     */
    private String cstateid;
 
    /**
     * 货主客户
     */
    private String ctplcustomerid;
 
    /**
     * 主单位
     */
    private String cunitid;
 
    /**
     * 供应商
     */
    private String cvendorid;
 
    /**
     * 寄存供应商
     */
    private String cvmivenderid;
 
    /**
     * 入库日期
     */
    private String dbizdate;
 
    /**
     * 首次入库日期
     */
    private String dinbounddate;
 
    /**
     * 生产日期
     */
    private String dproducedate;
 
    /**
     * 失效日期
     */
    private String dvalidate;
 
    /**
     * 批次版本号
     */
    private Integer ibcversion;
 
    /**
     * 拆解类型
     */
    private Integer idesatype;
 
    /**
     * 实收数量
     */
    private Double nassistnum;
 
    /**
     * 条码主数量
     */
    private Double nbarcodenum;
 
    /**
     * 累计出库数量
     */
    private Double ncorrespondastnum;
 
    /**
     * 累计出库毛重主数量
     */
    private Double ncorrespondgrsnum;
 
    /**
     * 累计出库主数量
     */
    private Double ncorrespondnum;
 
    /**
     * 金额
     */
    private Double ncostmny;
 
    /**
     * 单价
     */
    private Double ncostprice;
 
    /**
     * 箱数
     */
    private Double ncountnum;
 
    /**
     * 费用结算次数
     */
    private Integer nfeesettlecount;
 
    /**
     * 毛重主数量
     */
    private Double ngrossnum;
 
    /**
     * 件数
     */
    private Double npiece;
 
    /**
     * 计划金额
     */
    private Double nplannedmny;
 
    /**
     * 计划单价
     */
    private Double nplannedprice;
 
    /**
     * 应收数量
     */
    private Double nshouldassistnum;
 
    /**
     * 皮重主数量
     */
    private Double ntarenum;
 
    /**
     * 累计拣配主数量
     */
    private Double ntotalpicknum;
 
    /**
     * 体积
     */
    private Double nvolume;
 
    /**
     * 重量
     */
    private Double nweight;
 
    /**
     * 批次主键
     */
    private String pk_batchcode;
 
    /**
     * 集团
     */
    private String pk_group;
 
    /**
     * 计量器具
     */
    private String pk_measware;
 
    /**
     * 库存组织最新版本
     */
    private String pk_org;
 
    /**
     * 库存组织
     */
    private String pk_org_v;
 
    /**
     * 包装类型
     */
    private String pk_packsort;
 
    /**
     * 序列号主键
     */
    private String pk_serialcode;
 
    /**
     * 批次时间戳
     */
    private String tbcts;
 
    /**
     * 检验时间
     */
    private String tchecktime;
 
    /**
     * 来源表体时间戳
     */
    private String tsourcebodyts;
 
    /**
     * 来源表头时间戳
     */
    private String tsourceheadts;
 
    /**
     * 批次号
     */
    private String vbatchcode;
 
    /**
     * 批次备注
     */
    private String vbatchcodenote;
 
    // 批次自定义项(vbcdef1 - vbcdef20)
    private String vbcdef1;
    private String vbcdef2;
    private String vbcdef3;
    private String vbcdef4;
    private String vbcdef5;
    private String vbcdef6;
    private String vbcdef7;
    private String vbcdef8;
    private String vbcdef9;
    private String vbcdef10;
    private String vbcdef11;
    private String vbcdef12;
    private String vbcdef13;
    private String vbcdef14;
    private String vbcdef15;
    private String vbcdef16;
    private String vbcdef17;
    private String vbcdef18;
    private String vbcdef19;
    private String vbcdef20;
 
    // 表体自定义项(vbdef1 - vbdef20)
    private String vbdef1;
    private String vbdef2;
    private String vbdef3;
    private String vbdef4;
    private String vbdef5;
    private String vbdef6;
    private String vbdef7;
    private String vbdef8;
    private String vbdef9;
    private String vbdef10;
    private String vbdef11;
    private String vbdef12;
    private String vbdef13;
    private String vbdef14;
    private String vbdef15;
    private String vbdef16;
    private String vbdef17;
    private String vbdef18;
    private String vbdef19;
    private String vbdef20;
 
    /**
     * 单据条码
     */
    private String vbillbarcode;
 
    /**
     * 来自于零售之单据类型
     */
    private String vbilltypeu8rm;
 
    /**
     * 换算率
     */
    private String vchangerate;
 
    /**
     * 源头单据号
     */
    private String vfirstbillcode;
 
    /**
     * 源头单据行号
     */
    private String vfirstrowno;
 
    // 自由辅助属性(vfree1 - vfree10)
    private String vfree1;
    private String vfree2;
    private String vfree3;
    private String vfree4;
    private String vfree5;
    private String vfree6;
    private String vfree7;
    private String vfree8;
    private String vfree9;
    private String vfree10;
 
    /**
     * 行备注
     */
    private String vnotebody;
 
    /**
     * 序列号
     */
    private String vserialcode;
 
    // 序列号自定义项(vsndef1 - vsndef40)
    private String vsndef1;
    private String vsndef2;
    private String vsndef3;
    private String vsndef4;
    private String vsndef5;
    private String vsndef6;
    private String vsndef7;
    private String vsndef8;
    private String vsndef9;
    private String vsndef10;
    private String vsndef11;
    private String vsndef12;
    private String vsndef13;
    private String vsndef14;
    private String vsndef15;
    private String vsndef16;
    private String vsndef17;
    private String vsndef18;
    private String vsndef19;
    private String vsndef20;
    private String vsndef21;
    private String vsndef22;
    private String vsndef23;
    private String vsndef24;
    private String vsndef25;
    private String vsndef26;
    private String vsndef27;
    private String vsndef28;
    private String vsndef29;
    private String vsndef30;
    private String vsndef31;
    private String vsndef32;
    private String vsndef33;
    private String vsndef34;
    private String vsndef35;
    private String vsndef36;
    private String vsndef37;
    private String vsndef38;
    private String vsndef39;
    private String vsndef40;
 
    /**
     * 来源单据号
     */
    private String vsourcebillcode;
 
    /**
     * 来源单据行号
     */
    private String vsourcerowno;
 
    /**
     * 其他来源单据号
     */
    private String vsrc2billcode;
 
    /**
     * 其他来源单行号
     */
    private String vsrc2billrowno;
 
    /**
     * 收货车号
     */
    private String vtransfercode;
 
    /**
     * 来自于零售之交易类型
     */
    private String vtranstypeu8rm;
 
    /**
     * 运输工具号
     */
    private String vvehiclecode;
 
    /**
     * 供应商批次号
     */
    private String vvendbatchcode;
}