SupplychainItemByItemIdUpdateRequest.java
7.28 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
/**
* @(#)SupplychainItemUpdateRequest.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.request;
import com.xiniunet.framework.base.BaseUpdateRequest;
import java.util.Date;
/**
* Created by 沈振家 on 2016-10-10 11:11:43.
* @author 沈振家
*/
public class SupplychainItemByItemIdUpdateRequest extends BaseUpdateRequest {
/**
* 主键
*/
private Long id;
/**
* 供应方承租人ID
*/
private Long supplyTenantId;
/**
* 供应方物料Id
*/
private Long supplyItemId;
/**
* 供应方物料名称
*/
private String supplyItemName;
/**
* 供应方物料编码
*/
private String supplyItemNumber;
/**
* 供应方物料规格代码
*/
private String supplyItemSpecCode;
/**
* 供应方物料规格名称
*/
private String supplyItemSpecName;
/**
* 供应方商品Id
*/
private Long supplyCommodityId;
/**
* 需求方承租人ID
*/
private Long demandTenantId;
/**
* 需求方物料Id
*/
private Long demandItemId;
/**
* 需求方物料名称
*/
private String demandItemName;
/**
* 需求方物料编码
*/
private String demandItemNumber;
/**
* 需求方物料规格代码
*/
private String demandItemSpecCode;
/**
* 需求方物料规格名称
*/
private String demandItemSpecName;
/**
* 需求方商品Id
*/
private Long demandCommodityId;
/**
* 供应方是否开放
*/
private Boolean supplyIsActive;
/**
* 供应方开放时间
*/
private Date supplyActiveTime;
/**
* 供应方开放用户Id
*/
private Long supplyActiveUserId;
/**
* 供应方开放用户名称
*/
private String supplyActiveUserName;
/**
* 需求方是否开放
*/
private Boolean demandIsActive;
/**
* 需求方开放时间
*/
private Date demandActiveTime;
/**
* 需求方开放用户Id
*/
private Long demandActiveUserId;
/**
* 需求方开放用户名称
*/
private String demandActiveUserName;
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Long getSupplyTenantId() {
return this.supplyTenantId;
}
public void setSupplyTenantId(Long supplyTenantId) {
this.supplyTenantId = supplyTenantId;
}
public Long getSupplyItemId() {
return this.supplyItemId;
}
public void setSupplyItemId(Long supplyItemId) {
this.supplyItemId = supplyItemId;
}
public String getSupplyItemName() {
return this.supplyItemName;
}
public void setSupplyItemName(String supplyItemName) {
this.supplyItemName = supplyItemName;
}
public String getSupplyItemNumber() {
return this.supplyItemNumber;
}
public void setSupplyItemNumber(String supplyItemNumber) {
this.supplyItemNumber = supplyItemNumber;
}
public String getSupplyItemSpecCode() {
return this.supplyItemSpecCode;
}
public void setSupplyItemSpecCode(String supplyItemSpecCode) {
this.supplyItemSpecCode = supplyItemSpecCode;
}
public String getSupplyItemSpecName() {
return this.supplyItemSpecName;
}
public void setSupplyItemSpecName(String supplyItemSpecName) {
this.supplyItemSpecName = supplyItemSpecName;
}
public Long getSupplyCommodityId() {
return this.supplyCommodityId;
}
public void setSupplyCommodityId(Long supplyCommodityId) {
this.supplyCommodityId = supplyCommodityId;
}
public Long getDemandTenantId() {
return this.demandTenantId;
}
public void setDemandTenantId(Long demandTenantId) {
this.demandTenantId = demandTenantId;
}
public Long getDemandItemId() {
return this.demandItemId;
}
public void setDemandItemId(Long demandItemId) {
this.demandItemId = demandItemId;
}
public String getDemandItemName() {
return this.demandItemName;
}
public void setDemandItemName(String demandItemName) {
this.demandItemName = demandItemName;
}
public String getDemandItemNumber() {
return this.demandItemNumber;
}
public void setDemandItemNumber(String demandItemNumber) {
this.demandItemNumber = demandItemNumber;
}
public String getDemandItemSpecCode() {
return this.demandItemSpecCode;
}
public void setDemandItemSpecCode(String demandItemSpecCode) {
this.demandItemSpecCode = demandItemSpecCode;
}
public String getDemandItemSpecName() {
return this.demandItemSpecName;
}
public void setDemandItemSpecName(String demandItemSpecName) {
this.demandItemSpecName = demandItemSpecName;
}
public Long getDemandCommodityId() {
return this.demandCommodityId;
}
public void setDemandCommodityId(Long demandCommodityId) {
this.demandCommodityId = demandCommodityId;
}
public Boolean getSupplyIsActive() {
return this.supplyIsActive;
}
public void setSupplyIsActive(Boolean supplyIsActive) {
this.supplyIsActive = supplyIsActive;
}
public Date getSupplyActiveTime() {
return this.supplyActiveTime;
}
public void setSupplyActiveTime(Date supplyActiveTime) {
this.supplyActiveTime = supplyActiveTime;
}
public Long getSupplyActiveUserId() {
return this.supplyActiveUserId;
}
public void setSupplyActiveUserId(Long supplyActiveUserId) {
this.supplyActiveUserId = supplyActiveUserId;
}
public String getSupplyActiveUserName() {
return this.supplyActiveUserName;
}
public void setSupplyActiveUserName(String supplyActiveUserName) {
this.supplyActiveUserName = supplyActiveUserName;
}
public Boolean getDemandIsActive() {
return this.demandIsActive;
}
public void setDemandIsActive(Boolean demandIsActive) {
this.demandIsActive = demandIsActive;
}
public Date getDemandActiveTime() {
return this.demandActiveTime;
}
public void setDemandActiveTime(Date demandActiveTime) {
this.demandActiveTime = demandActiveTime;
}
public Long getDemandActiveUserId() {
return this.demandActiveUserId;
}
public void setDemandActiveUserId(Long demandActiveUserId) {
this.demandActiveUserId = demandActiveUserId;
}
public String getDemandActiveUserName() {
return this.demandActiveUserName;
}
public void setDemandActiveUserName(String demandActiveUserName) {
this.demandActiveUserName = demandActiveUserName;
}
}