ICSReceiptHeader.java
8.26 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
package com.huaheng.api.U8.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import java.io.Serializable;
import java.util.Date;
/**
* 出库下发或回传主单
* @author huaheng
* @date 2018-12-14
*/
public class ICSReceiptHeader implements Serializable {
private static final long serialVersionUID = -2190076963166343013L;
// 出库下发或回传的主单code
private String cCode;
//单主表标识
@JsonProperty(value = "ID")
private Integer ID;
//采购订单号
private String cPOID;
//采购订单ID
@JsonProperty(value = "POID")
private Integer POID;
//入库日期
private String dPODate;
//供应商代码
private String cVenCode;
//供应商名称
private String cVenName;
//业务类型
private String cBusType;
private String type;
//部门代码
private String cDepCode;
//部门名称
private String cDepName;
//业务员代码
private String cPersonCode;
//业务员名称
private String cPersonName;
//备注
private String cMemo;
//制单人
private String cMaker;
//审核人
private String cVerifier;
//公司代码(账套代码)
@JsonProperty(value = "CompanyCode")
private String CompanyCode;
//维护日期
private String cModifyDate;
//出库日期
private String dDate;
//出库类别
private String cRDName;
//库房代码
private String cWHCode;
//库房名称
private String cWHName;
private String iWHCode;
private String iWHName;
//发货退货单主表标识
@JsonProperty(value = "DLID")
private Integer DLID;
//发货退货单号
private String cDLCode;
//客户代码
private String cCusCode;
//客户名称
private String cCusName;
//销售类型(默认:国外销售)
private String cSTName;
//调拨单号
private String cTVCode;
@JsonProperty(value = "VoucherType")
private String VoucherType;
public String getVoucherType() {
return VoucherType;
}
public void setVoucherType(String voucherType) {
VoucherType = voucherType;
}
public String getcPOID() {
return cPOID;
}
public void setcPOID(String cPOID) {
this.cPOID = cPOID;
}
public Integer getPOID() {
return POID;
}
public void setPOID(Integer POID) {
this.POID = POID;
}
public String getcTVCode() {
return cTVCode;
}
public void setcTVCode(String cTVCode) {
this.cTVCode = cTVCode;
}
public String getcCode() {
return cCode;
}
public void setcCode(String cCode) {
this.cCode = cCode;
}
public Integer getID() {
return ID;
}
public void setID(Integer ID) {
this.ID = ID;
}
public String getdPODate() {
return dPODate;
}
public void setdPODate(String dPODate) {
this.dPODate = dPODate;
}
public String getcVenCode() {
return cVenCode;
}
public void setcVenCode(String cVenCode) {
this.cVenCode = cVenCode;
}
public String getcVenName() {
return cVenName;
}
public void setcVenName(String cVenName) {
this.cVenName = cVenName;
}
public String getcBusType() {
return cBusType;
}
public void setcBusType(String cBusType) {
this.cBusType = cBusType;
}
public String getcDepCode() {
return cDepCode;
}
public void setcDepCode(String cDepCode) {
this.cDepCode = cDepCode;
}
public String getcDepName() {
return cDepName;
}
public void setcDepName(String cDepName) {
this.cDepName = cDepName;
}
public String getcPersonCode() {
return cPersonCode;
}
public void setcPersonCode(String cPersonCode) {
this.cPersonCode = cPersonCode;
}
public String getcPersonName() {
return cPersonName;
}
public void setcPersonName(String cPersonName) {
this.cPersonName = cPersonName;
}
public String getcMemo() {
return cMemo;
}
public void setcMemo(String cMemo) {
this.cMemo = cMemo;
}
public String getcMaker() {
return cMaker;
}
public void setcMaker(String cMaker) {
this.cMaker = cMaker;
}
public String getCompanyCode() {
return CompanyCode;
}
public void setCompanyCode(String companyCode) {
CompanyCode = companyCode;
}
public String getcModifyDate() {
return cModifyDate;
}
public void setcModifyDate(String cModifyDate) {
this.cModifyDate = cModifyDate;
}
public String getcVerifier() {
return cVerifier;
}
public void setcVerifier(String cVerifier) {
this.cVerifier = cVerifier;
}
public String getdDate() {
return dDate;
}
public void setdDate(String dDate) {
this.dDate = dDate;
}
public String getcRDName() {
return cRDName;
}
public void setcRDName(String cRDName) {
this.cRDName = cRDName;
}
public String getcWHCode() {
return cWHCode;
}
public void setcWHCode(String cWHCode) {
this.cWHCode = cWHCode;
}
public String getcWHName() {
return cWHName;
}
public void setcWHName(String cWHName) {
this.cWHName = cWHName;
}
public Integer getDLID() {
return DLID;
}
public void setDLID(Integer DLID) {
this.DLID = DLID;
}
public String getcDLCode() {
return cDLCode;
}
public void setcDLCode(String cDLCode) {
this.cDLCode = cDLCode;
}
public String getcCusCode() {
return cCusCode;
}
public void setcCusCode(String cCusCode) {
this.cCusCode = cCusCode;
}
public String getcCusName() {
return cCusName;
}
public void setcCusName(String cCusName) {
this.cCusName = cCusName;
}
public String getcSTName() {
return cSTName;
}
public void setcSTName(String cSTName) {
this.cSTName = cSTName;
}
public String getiWHCode() {
return iWHCode;
}
public void setiWHCode(String iWHCode) {
this.iWHCode = iWHCode;
}
public String getiWHName() {
return iWHName;
}
public void setiWHName(String iWHName) {
this.iWHName = iWHName;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String toString() {
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
.append("ID", getID())
.append("cCode", getcCode())
.append("cPOID", getcPOID())
.append("POID", getPOID())
.append("dPODate", getdPODate())
.append("cVenCode", getcVenCode())
.append("cVenName", getcVenName())
.append("cBusType", getcBusType())
.append("type", getType())
.append("cDepCode", getcDepCode())
.append("cDepName", getcDepName())
.append("cPersonCode", getcPersonCode())
.append("cPersonName", getcPersonName())
.append("cMemo", getcMemo())
.append("cMaker", getcMaker())
.append("cVerifier", getcVerifier())
.append("CompanyCode", getCompanyCode())
.append("cModifyDate", getcModifyDate())
.append("dDate", getdDate())
.append("cRDName", getcRDName())
.append("cWHCode", getcWHCode())
.append("cWHName", getcWHName())
.append("iWHCode", getiWHCode())
.append("iWHName", getiWHName())
.append("cTVCode",getcTVCode())
.append("DLID", getDLID())
.append("cDLCode", getcDLCode())
.append("cCusCode", getcCusCode())
.append("cCusName", getcCusName())
.append("cSTName", getcSTName())
.append("VoucherType",getVoucherType())
.toString();
}
}