自动化立体仓库 - WMS系统
#
pjb
2024-12-31 24527aa9d2f522faa574ac3f3bdb1544d0b2a9bf
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
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
/**
 * 海诺尔U8出库单同步参数
 */
@Data
public class
OpenOrderPakoutParam {
 
    //入库单号
    private String cCode;
 
    //单据日期
    private String dDate;
 
    //类型
    private String type;
 
    //制单人
    private String cMaker;
 
    //主体
    private String cAccount;
 
    public void setcCusName(String cCusName) {
        this.cCusName = cCusName;
    }
 
    //公司
    private String cCusName;
 
    //调拨
    private String allocation;
 
    //备注
    private String cMemo;
 
    private List<Body> ADDBody;
 
    //private List<DetlDto> orderDetails;
    public void setcCode(String cCode) {
        this.cCode = cCode;
    }
 
    public void setdDate(String dDate) {
//        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-DD hh:mm:ss");
//        this.dDate =  sdf.parse(dDate);
 
        this.dDate = dDate;
    }
 
//    public void setdDate$(Date dDate) {
//        this.dDate =  dDate;
//    }
 
    public void setcMaker(String cMaker) {
        this.cMaker = cMaker;
    }
 
    public void setcAccount(String cAccount) {
        this.cAccount = cAccount;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public void setcMemo(String cMemo) {
        this.cMemo = cMemo;
    }
 
    public void setaDDBody(List<Body> aDDBody) {
        this.ADDBody = aDDBody;
    }
 
    public void setAllocation(String allocation) {
        this.allocation = allocation;
    }
 
    @Data
    public static class Body{
        //存货编码
        private String cInvCode;
        //数量
        private Double iQuantity;
        //批号
        private String cBatch;
 
        //批号
        private String cPackage;
        //行备注
        private String cbMemo;
 
        public void setcInvCode(String cInvCode) {
            this.cInvCode = cInvCode;
        }
 
        public void setiQuantity(Double iQuantity) {
            this.iQuantity = iQuantity;
        }
 
        public void setcBatch(String cBatch) {
            this.cBatch = cBatch;
        }
 
        public void setCbMemo(String cbMemo) {
            this.cbMemo = cbMemo;
        }
    }
 
}