自动化立体仓库 - WMS系统
*
lsh
2 天以前 f41987779e09b4bf2e10df27ff60f4b28318d630
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
package com.zy.common.model;
 
import lombok.Data;
 
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
/**
 * Created by vincent on 2022/4/21
 */
@Data
public class YXErpPakinParam {
 
    // 库存调拨单号
    private String cTVCode; //必填
    // 单据日期
    private String dTVDate; //必填
    // 转出仓库编码
    private String cOWhCode = "100";
    // 转入仓库编码
    private String cIWhCode = "201";
    // 转出部门编码
    private String cODepCode;
    // 转入部门编码
    private String cIDepCode;
    // 入库类别编码
    private String cIRdCode = "105";
    // 出库类别编码
    private String cORdCode = "205";
    // 制单人
    private String cMaker = "WMS管理员";
    // 审核人
    private String cVerifyPerson = "WMS管理员";
    // 审核日期
    private String dVerifyDate; //必填
 
    private List<Detl> detail = new ArrayList<>();
 
    @Data
    public static class Detl {
 
        // 库存调拨单号
        private String cTVCode; //必填
 
        // 物料编码  存货编码
        private String cInvCode; //必填
 
        // 物料条码
//        private String barcode;
 
        // 数量
//        private Double anfme;
        private Double iTVQuantity; //必填
 
        public Detl() {
        }
 
        public Detl(String cTVCode, String cInvCode, Double iTVQuantity) {
            this.cTVCode = cTVCode;
            this.cInvCode = cInvCode;
            this.iTVQuantity = iTVQuantity;
        }
    }
 
}