自动化立体仓库 - WMS系统
zyx
2024-05-18 1e62a6d467407addae8745d8c69454318af56a09
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
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class OrderProdSyncParam {
    private String 操作系统号;
    private String 操作单据;
    private String 操作类型;
    //工单号
    private String orderNo;
    //工单号T
    private String orderNoT;
    //开单日期
    private String orderTime;
    //单据行号
    private String ivouchrowno;
    //产品编码
    private String cInvCode;
    //生产订单号
    private String csocode;
    //生产数量
    private Double iQuantity;
    //状态
    private Integer states;
    //规格(自由项1)
    private String bFree1;
    //产线
    private String define24;
    //单据类型
    private String cVouchtype;
    //备注
    private String cMemo;
    //来源标识
    private String sourceIndefine;
    //产品生产标识
    private String prodIndefine;
    //
    private String id;
    //子件信息
    private List<ChildInfo> children;
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public void setOrderNoT(String orderNoT) {
        this.orderNoT = orderNoT;
    }
 
    public void setOrderTime(String orderTime) {
        this.orderTime = orderTime;
    }
 
    public void setIvouchrowno(String ivouchrowno) {
        this.ivouchrowno = ivouchrowno;
    }
 
    public void setcInvCode(String cInvCode) {
        this.cInvCode = cInvCode;
    }
 
    public void setCsocode(String csocode) {
        this.csocode = csocode;
    }
 
    public void setiQuantity(Double iQuantity) {
        this.iQuantity = iQuantity;
    }
 
    public void setStates(Integer states) {
        this.states = states;
    }
 
    public void setbFree1(String bFree1) {
        this.bFree1 = bFree1;
    }
 
    public void setDefine24(String define24) {
        this.define24 = define24;
    }
 
    public void setcVouchtype(String cVouchtype) {
        this.cVouchtype = cVouchtype;
    }
 
    public void setChild(List<ChildInfo> children) {
        this.children = children;
    }
 
    public void set操作系统号(String 操作系统号) {
        this.操作系统号 = 操作系统号;
    }
 
    public void set操作单据(String 操作单据) {
        this.操作单据 = 操作单据;
    }
 
    public void set操作类型(String 操作类型) {
        this.操作类型 = 操作类型;
    }
 
    public void setcMemo(String cMemo) {
        this.cMemo = cMemo;
    }
 
    public void setSourceIndefine(String sourceIndefine) {
        this.sourceIndefine = sourceIndefine;
    }
 
    public void setProdIndefine(String prodIndefine) {
        this.prodIndefine = prodIndefine;
    }
 
    /**
     * 用于生成出库单据
     */
    @Data
    public static class ChildInfo{
        //ID
        private String id;
        //IDs
        private String ids;
        //工单号T
        private String orderNoT;
        //工单号
        private String orderNo;
        //物料编码
        private String cInvCode;
        //数量
        private Double iQuantity;
        //规格(自由项1)
        private String bFree1;
        //单据行号
        private String ivouchrowno;
        //子件号
        private String childNo;
 
 
        public void setId(String id) {
            this.id = id;
        }
 
        public void setIds(String ids) {
            this.ids = ids;
        }
 
        public void setOrderNoT(String orderNoT) {
            this.orderNoT = orderNoT;
        }
 
        public void setcInvCode(String cInvCode) {
            this.cInvCode = cInvCode;
        }
 
        public void setiQuantity(Double iQuantity) {
            this.iQuantity = iQuantity;
        }
 
        public void setbFree1(String bFree1) {
            this.bFree1 = bFree1;
        }
 
        public void setOrderNo(String orderNo) {
            this.orderNo = orderNo;
        }
 
        public void setIvouchrowno(String ivouchrowno) {
            this.ivouchrowno = ivouchrowno;
        }
 
        public void setChildNo(String childNo) {
            this.childNo = childNo;
        }
    }
 
}