Europe.java
4.29 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
/**
* @(#)SupplychainItem.java
*
* Copyright (c) 2014-2014 苏州犀牛网络科技有限公司 版权所有
* xiniunet. All rights reserved.
*
* This software is the confidential and proprietary
* information of xiniunet.
* ("Confidential Information"). You shall not disclose
* such Confidential Information and shall use it only
* in accordance with the terms of the contract agreement
* you entered into with xiniunet.
*/
package com.xiniunet.lecunstomization.domain;
import com.xiniunet.framework.base.BaseDomain;
/**
* Created by 沈振家 on 2016-10-10 11:11:43.
* @author 沈振家
*/
public class Europe extends BaseDomain {
/**
* 仓库名称
*/
private String storeroomName;
/**
* 品牌
*/
private String brandName;
/**
* 类目
*/
private String categoryName;
/**
* 物料货号
*/
private String itemNumber;
/**
* 物料名称
*/
private String itemName;
/**
* 规格代码
*/
private String itemSpecCode;
/**
* 规格名称
*/
private String itemSpecName;
/**
* 可用数量
*/
private Double canUseQuantity;
/**
* 分配数量
*/
private Double allocationQuantity;
/**
* 库存数
*/
private Double balanceQuantity;
/**
* 安全库存
*/
private Long safeQuantity;
/**
* 商品状态
*/
private ItemStateEnum states;
/**
* 长
*/
private Double length;
/**
* 宽
*/
private Double width;
/**
* 高
*/
private Double height;
/**
* 净重
*/
private Double weight;
public String getStoreroomName() {
return storeroomName;
}
public void setStoreroomName(String storeroomName) {
this.storeroomName = storeroomName;
}
public String getBrandName() {
return brandName;
}
public void setBrandName(String brandName) {
this.brandName = brandName;
}
public String getCategoryName() {
return categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public String getItemNumber() {
return itemNumber;
}
public void setItemNumber(String itemNumber) {
this.itemNumber = itemNumber;
}
public String getItemName() {
return itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public String getItemSpecCode() {
return itemSpecCode;
}
public void setItemSpecCode(String itemSpecCode) {
this.itemSpecCode = itemSpecCode;
}
public String getItemSpecName() {
return itemSpecName;
}
public void setItemSpecName(String itemSpecName) {
this.itemSpecName = itemSpecName;
}
public Double getCanUseQuantity() {
return canUseQuantity;
}
public void setCanUseQuantity(Double canUseQuantity) {
this.canUseQuantity = canUseQuantity;
}
public Double getAllocationQuantity() {
return allocationQuantity;
}
public void setAllocationQuantity(Double allocationQuantity) {
this.allocationQuantity = allocationQuantity;
}
public Double getBalanceQuantity() {
return balanceQuantity;
}
public void setBalanceQuantity(Double balanceQuantity) {
this.balanceQuantity = balanceQuantity;
}
public Long getSafeQuantity() {
return safeQuantity;
}
public void setSafeQuantity(Long safeQuantity) {
this.safeQuantity = safeQuantity;
}
public ItemStateEnum getStates() {
return states;
}
public void setStates(ItemStateEnum states) {
this.states = states;
}
public Double getLength() {
return length;
}
public void setLength(Double length) {
this.length = length;
}
public Double getWidth() {
return width;
}
public void setWidth(Double width) {
this.width = width;
}
public Double getHeight() {
return height;
}
public void setHeight(Double height) {
this.height = height;
}
public Double getWeight() {
return weight;
}
public void setWeight(Double weight) {
this.weight = weight;
}
}