ReceiptEntity.java
5.04 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
package com.huaheng.api.erp.domain;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.math.BigDecimal;
/**
* @author tzh
*/
public class ReceiptEntity {
/**
* 物料编码
*/
@SerializedName("FMaterialId")
private ConvertObj material;
/**
* 辅助属性
*/
@SerializedName("FAuxPropId")
private AuxProperty property;
/**
* 单位
*/
@SerializedName("FInStockType")
private String inStockType = "1";
/**
* 单位
*/
@SerializedName("FUnitID")
private ConvertObj unit;
/**
* 实收数量
*/
@SerializedName("FQty")
private BigDecimal qty;
/**
* 收货仓库
*/
@SerializedName("FStockId")
private ConvertObj stockId;
/**
* 批号
*/
@SerializedName("FLOT")
private ConvertObj lotId;
/**
* 生产编号
*/
@SerializedName("FProductNo")
private String productNo;
/**
* 货主类型
*/
@SerializedName("FOwnerTypeId")
private String ownerType = "BD_OwnerOrg";
/**
* 货主
*/
@SerializedName("FOwnerId")
private ConvertObj ownerId;
/**
* 箱数
*/
@SerializedName("F_CH_box")
private Integer box;
/**
* 重量
*/
@SerializedName("F_CH_weight")
private BigDecimal weight;
/**
* 库存状态
*/
@SerializedName("FStockStatusId")
private ConvertObj stockstatusId;
/**
* 保管者类型
*/
@SerializedName("FKeeperTypeId")
private String keeperType = "BD_KeeperOrg";
/**
* 归属者
*/
@SerializedName("FKeeperId")
@Expose
private ConvertObj keeperId;
/**
* 生产车间
*/
@SerializedName("FWorkShopId1")
private ConvertObj workShopId;
/**
* 库存组织
*/
@SerializedName("F_CH_OrgId")
private ConvertObj orgId;
/**
* 实收数量
*/
@SerializedName("FRealQty")
private BigDecimal realQty;
/**
* 基本单位实收数量
*/
@SerializedName("FBaseRealQty")
private BigDecimal baseRealQty;
public String getProductNo() {
return productNo;
}
public void setProductNo(String productNo) {
this.productNo = productNo;
}
public BigDecimal getRealQty() {
return realQty;
}
public void setRealQty(BigDecimal realQty) {
this.realQty = realQty;
}
public BigDecimal getBaseRealQty() {
return baseRealQty;
}
public void setBaseRealQty(BigDecimal baseRealQty) {
this.baseRealQty = baseRealQty;
}
public ConvertObj getWorkShopId() {
return workShopId;
}
public void setWorkShopId(ConvertObj workShopId) {
this.workShopId = workShopId;
}
public String getInStockType() {
return inStockType;
}
public void setInStockType(String inStockType) {
this.inStockType = inStockType;
}
public ConvertObj getOrgId() {
return orgId;
}
public void setOrgId(ConvertObj orgId) {
this.orgId = orgId;
}
public ConvertObj getMaterial() {
return material;
}
public void setMaterial(ConvertObj material) {
this.material = material;
}
public AuxProperty getProperty() {
return property;
}
public void setProperty(AuxProperty property) {
this.property = property;
}
public ConvertObj getUnit() {
return unit;
}
public void setUnit(ConvertObj unit) {
this.unit = unit;
}
public ConvertObj getStockstatusId() {
return stockstatusId;
}
public void setStockstatusId(ConvertObj stockstatusId) {
this.stockstatusId = stockstatusId;
}
public BigDecimal getQty() {
return qty;
}
public void setQty(BigDecimal qty) {
this.qty = qty;
}
public ConvertObj getStockId() {
return stockId;
}
public void setStockId(ConvertObj stockId) {
this.stockId = stockId;
}
public ConvertObj getLotId() {
return lotId;
}
public void setLotId(ConvertObj lotId) {
this.lotId = lotId;
}
public String getOwnerType() {
return ownerType;
}
public void setOwnerType(String ownerType) {
this.ownerType = ownerType;
}
public ConvertObj getOwnerId() {
return ownerId;
}
public void setOwnerId(ConvertObj ownerId) {
this.ownerId = ownerId;
}
public String getKeeperType() {
return keeperType;
}
public void setKeeperType(String keeperType) {
this.keeperType = keeperType;
}
public ConvertObj getKeeperId() {
return keeperId;
}
public void setKeeperId(ConvertObj keeperId) {
this.keeperId = keeperId;
}
public Integer getBox() {
return box;
}
public void setBox(Integer box) {
this.box = box;
}
public BigDecimal getWeight() {
return weight;
}
public void setWeight(BigDecimal weight) {
this.weight = weight;
}
}