OutpropApplyPickInfo.java
7.24 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
package com.cjs.site.model.user.pick;
import java.util.ArrayList;
import java.util.List;
import com.cjs.site.model.BaseInfo;
/**
* 提货记录主表(hs_asset)(关联表hs_asset.outpropapply)
*
* @author tongyufu
*
*/
public class OutpropApplyPickInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private String pickNo; //提货单号
private String clientId;
private String pickType; //提货方式(0:本人自提;1:委托自提;2:物流;3:转赵涌在线;4:网点自提)
private Integer pickAmount; //提货总量
private Integer insurance; //保价金额
private Integer insuranceType; //是否保价(0:否;1:是)
private String delegateName; //代理人姓名
private String delegateId; //委托人证件号码
private String zhaoonlineId; //赵涌在线账号
private String packageType; //礼品包装方式
private Double packageFee; //礼品包装费
private Double expressPackFee; //物流包装费
private Double amountFee; //费用总计
private String export; //导出确权文件(0:未导出;1:已导出)
private String pickDate;
private String auditDate;
private String auditTime;
private String express;
private String expressNo;
private String expressDate;
private String expressTime;
private String createDate;
private String createTime;
private String warehouseCode;
private boolean merge = false; //是否合并提货单
private List<OutpropApplyInfo> applyList = new ArrayList<OutpropApplyInfo>();
private String amount;
private Integer trusteeshipCycle;
private String billNo;
public String getPickNo() {
return pickNo;
}
public void setPickNo(String pickNo) {
this.pickNo = pickNo;
}
public String getPickType() {
return pickType;
}
public void setPickType(String pickType) {
this.pickType = pickType;
}
public Integer getPickAmount() {
return pickAmount;
}
public void setPickAmount(Integer pickAmount) {
this.pickAmount = pickAmount;
}
public Integer getInsurance() {
return insurance;
}
public void setInsurance(Integer insurance) {
this.insurance = insurance;
}
public Integer getInsuranceType() {
return insuranceType;
}
public void setInsuranceType(Integer insuranceType) {
this.insuranceType = insuranceType;
}
public String getDelegateName() {
return delegateName;
}
public void setDelegateName(String delegateName) {
this.delegateName = delegateName;
}
public String getDelegateId() {
return delegateId;
}
public void setDelegateId(String delegateId) {
this.delegateId = delegateId;
}
public String getExport() {
return export;
}
public void setExport(String export) {
this.export = export;
}
public String getPickDate() {
return pickDate;
}
public void setPickDate(String pickDate) {
this.pickDate = pickDate;
}
public String getClientId() {
return clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getAuditDate() {
return auditDate;
}
public void setAuditDate(String auditDate) {
this.auditDate = auditDate;
}
public String getAuditTime() {
return auditTime;
}
public void setAuditTime(String auditTime) {
this.auditTime = auditTime;
}
public String getExpress() {
return express;
}
public void setExpress(String express) {
this.express = express;
}
public String getExpressNo() {
return expressNo;
}
public void setExpressNo(String expressNo) {
this.expressNo = expressNo;
}
public String getExpressDate() {
return expressDate;
}
public void setExpressDate(String expressDate) {
this.expressDate = expressDate;
}
public String getExpressTime() {
return expressTime;
}
public void setExpressTime(String expressTime) {
this.expressTime = expressTime;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getCreateTime() {
return createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public boolean isMerge() {
return merge;
}
public void setMerge(boolean merge) {
this.merge = merge;
}
public String getZhaoonlineId() {
return zhaoonlineId;
}
public void setZhaoonlineId(String zhaoonlineId) {
this.zhaoonlineId = zhaoonlineId;
}
public List<OutpropApplyInfo> getApplyList() {
return applyList;
}
public void setApplyList(List<OutpropApplyInfo> applyList) {
this.applyList = applyList;
}
public String getPackageType() {
return packageType;
}
public void setPackageType(String packageType) {
this.packageType = packageType;
}
public Double getPackageFee() {
return packageFee;
}
public void setPackageFee(Double packageFee) {
this.packageFee = packageFee;
}
public Double getExpressPackFee() {
return expressPackFee;
}
public void setExpressPackFee(Double expressPackFee) {
this.expressPackFee = expressPackFee;
}
public Double getAmountFee() {
return amountFee;
}
public void setAmountFee(Double amountFee) {
this.amountFee = amountFee;
}
public String getWarehouseCode() {
return warehouseCode;
}
public void setWarehouseCode(String warehouseCode) {
this.warehouseCode = warehouseCode;
}
public String getAmount() {
return amount;
}
public void setAmount(String amount) {
this.amount = amount;
}
public Integer getTrusteeshipCycle() {
return trusteeshipCycle;
}
public void setTrusteeshipCycle(Integer trusteeshipCycle) {
this.trusteeshipCycle = trusteeshipCycle;
}
public String getBillNo() {
return billNo;
}
public void setBillNo(String billNo) {
this.billNo = billNo;
}
}