OutpropApplyInfo.java
5.67 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
package com.cjs.site.model.user.pick;
import com.cjs.site.model.BaseInfo;
/**
* 提货信息
*
* @author tongyufu
*
*/
public class OutpropApplyInfo extends BaseInfo {
private static final long serialVersionUID = 1L;
private String positionStr; //主键
private String fundAccount; //会员号
private String otcCode; //藏品编号
private String otcName; //藏品名称
private Integer occurAmount; //提货数量
private Integer enableAmount; //可提数量
private String pickingName; //提货人姓名
private String phoneCode; //手机号
private String idNo; //身份证号码
private String pickingAddress; //提货地址
private String remark; //备注
private String opStation; //关联pick_no
private String pickingDate; //提货日期
private String pickType; //01:自提; 02:物流
private String expressAddress; //物流地址
private String pickStatus;
private String pickStatusName;
private String serialNo;
private String initDate;
private String packType; //提货封装方式
private Double packFee; //提货封装费
private Integer resultCode; //T2接口调用结果
/***********2019-04-18开发新需求添加字段************/
private Integer trusteeshipCycle;//托管周期
private Double warehousingCharges;//托管费用
public String getPositionStr() {
return positionStr;
}
public void setPositionStr(String positionStr) {
this.positionStr = positionStr;
}
public String getFundAccount() {
return fundAccount;
}
public void setFundAccount(String fundAccount) {
this.fundAccount = fundAccount;
}
public String getOtcCode() {
return otcCode;
}
public void setOtcCode(String otcCode) {
this.otcCode = otcCode;
}
public String getOtcName() {
return otcName;
}
public void setOtcName(String otcName) {
this.otcName = otcName;
}
public String getPickingName() {
return pickingName;
}
public void setPickingName(String pickingName) {
this.pickingName = pickingName;
}
public String getPhoneCode() {
return phoneCode;
}
public void setPhoneCode(String phoneCode) {
this.phoneCode = phoneCode;
}
public String getIdNo() {
return idNo;
}
public void setIdNo(String idNo) {
this.idNo = idNo;
}
public String getPickingAddress() {
return pickingAddress;
}
public void setPickingAddress(String pickingAddress) {
this.pickingAddress = pickingAddress;
}
public String getExpressAddress() {
return expressAddress;
}
public void setExpressAddress(String expressAddress) {
this.expressAddress = expressAddress;
}
public String getRemark() {
return remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Integer getOccurAmount() {
return occurAmount;
}
public void setOccurAmount(Integer occurAmount) {
this.occurAmount = occurAmount;
}
public String getOpStation() {
return opStation;
}
public void setOpStation(String opStation) {
this.opStation = opStation;
}
public String getPickingDate() {
return pickingDate;
}
public void setPickingDate(String pickingDate) {
this.pickingDate = pickingDate;
}
public String getPickType() {
return pickType;
}
public void setPickType(String pickType) {
this.pickType = pickType;
}
public String getPickStatus() {
return pickStatus;
}
public void setPickStatus(String pickStatus) {
this.pickStatus = pickStatus;
}
public String getPickStatusName() {
return pickStatusName;
}
public void setPickStatusName(String pickStatusName) {
this.pickStatusName = pickStatusName;
}
public String getSerialNo() {
return serialNo;
}
public void setSerialNo(String serialNo) {
this.serialNo = serialNo;
}
public String getInitDate() {
return initDate;
}
public void setInitDate(String initDate) {
this.initDate = initDate;
}
public Integer getEnableAmount() {
return enableAmount;
}
public void setEnableAmount(Integer enableAmount) {
this.enableAmount = enableAmount;
}
public String getPackType() {
return packType;
}
public void setPackType(String packType) {
this.packType = packType;
}
public Double getPackFee() {
return packFee;
}
public void setPackFee(Double packFee) {
this.packFee = packFee;
}
public Integer getResultCode() {
return resultCode;
}
public void setResultCode(Integer resultCode) {
this.resultCode = resultCode;
}
public Integer getTrusteeshipCycle() {
return trusteeshipCycle;
}
public void setTrusteeshipCycle(Integer trusteeshipCycle) {
this.trusteeshipCycle = trusteeshipCycle;
}
public Double getWarehousingCharges() {
return warehousingCharges;
}
public void setWarehousingCharges(Double warehousingCharges) {
this.warehousingCharges = warehousingCharges;
}
}