f7a13682
“wangming”
项目初始化
|
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
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
|
package etelligens.com.foodsafety.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class Slotdatum {
@SerializedName("storage_id")
@Expose
private Integer storageId;
@SerializedName("slot_id")
@Expose
private Integer slotId;
@SerializedName("id")
@Expose
private Integer id;
@SerializedName("cat_id")
@Expose
private Integer catId;
@SerializedName("outlet_id")
@Expose
private String outletId;
@SerializedName("label_id")
@Expose
private Object labelId;
@SerializedName("user_id")
@Expose
private Integer userId;
@SerializedName("product_unique_id")
@Expose
private String productUniqueId;
@SerializedName("barcode_unique_num")
@Expose
private String barcodeUniqueNum;
@SerializedName("quantity")
@Expose
private Integer quantity;
@SerializedName("name")
@Expose
private String name;
@SerializedName("you_tube_url")
@Expose
private Object youTubeUrl;
@SerializedName("slug")
@Expose
private String slug;
@SerializedName("barcode_img_path")
@Expose
private String barcodeImgPath;
@SerializedName("product_price")
@Expose
private Object productPrice;
@SerializedName("ingredient")
@Expose
private String ingredient;
@SerializedName("allergens")
@Expose
private String allergens;
@SerializedName("enjoy_by")
@Expose
private String enjoyBy;
@SerializedName("print_logo")
@Expose
private Integer printLogo;
@SerializedName("print_barcode")
@Expose
private Integer printBarcode;
@SerializedName("description")
@Expose
private String description;
@SerializedName("is_all")
@Expose
private Integer isAll;
@SerializedName("partner_id")
@Expose
private Integer partnerId;
@SerializedName("created_at")
@Expose
private String createdAt;
@SerializedName("updated_at")
@Expose
private String updatedAt;
@SerializedName("status")
@Expose
private Integer status;
@SerializedName("is_deleted")
@Expose
private Integer isDeleted;
@SerializedName("temp_id")
@Expose
private Integer tempId;
@SerializedName("temprature")
@Expose
private String temprature;
@SerializedName("temp_min")
@Expose
private Integer tempMin;
@SerializedName("temp_max")
@Expose
private Integer tempMax;
@SerializedName("out_of_range")
@Expose
private Integer outOfRange;
@SerializedName("temp_type")
@Expose
private String tempType;
@SerializedName("image")
@Expose
private String image;
@SerializedName("action_low")
@Expose
private String actionLow;
@SerializedName("action_high")
@Expose
private String actionHigh;
@SerializedName("is_checked")
@Expose
private String isChecked;
@SerializedName("action_id")
@Expose
private String actionId;
public Integer getStorageId() {
return storageId;
}
public void setStorageId(Integer storageId) {
this.storageId = storageId;
}
public Integer getSlotId() {
return slotId;
}
public void setSlotId(Integer slotId) {
this.slotId = slotId;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getCatId() {
return catId;
}
public void setCatId(Integer catId) {
this.catId = catId;
}
public String getOutletId() {
return outletId;
}
public void setOutletId(String outletId) {
this.outletId = outletId;
}
public Object getLabelId() {
return labelId;
}
public void setLabelId(Object labelId) {
this.labelId = labelId;
}
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getProductUniqueId() {
return productUniqueId;
}
public void setProductUniqueId(String productUniqueId) {
this.productUniqueId = productUniqueId;
}
public String getBarcodeUniqueNum() {
return barcodeUniqueNum;
}
public void setBarcodeUniqueNum(String barcodeUniqueNum) {
this.barcodeUniqueNum = barcodeUniqueNum;
}
public Integer getQuantity() {
return quantity;
}
public void setQuantity(Integer quantity) {
this.quantity = quantity;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Object getYouTubeUrl() {
return youTubeUrl;
}
public void setYouTubeUrl(Object youTubeUrl) {
this.youTubeUrl = youTubeUrl;
}
public String getSlug() {
return slug;
}
public void setSlug(String slug) {
this.slug = slug;
}
public String getBarcodeImgPath() {
return barcodeImgPath;
}
public void setBarcodeImgPath(String barcodeImgPath) {
this.barcodeImgPath = barcodeImgPath;
}
public Object getProductPrice() {
return productPrice;
}
public void setProductPrice(Object productPrice) {
this.productPrice = productPrice;
}
public String getIngredient() {
return ingredient;
}
public void setIngredient(String ingredient) {
this.ingredient = ingredient;
}
public String getAllergens() {
return allergens;
}
public void setAllergens(String allergens) {
this.allergens = allergens;
}
public String getEnjoyBy() {
return enjoyBy;
}
public void setEnjoyBy(String enjoyBy) {
this.enjoyBy = enjoyBy;
}
public Integer getPrintLogo() {
return printLogo;
}
public void setPrintLogo(Integer printLogo) {
this.printLogo = printLogo;
}
public Integer getPrintBarcode() {
return printBarcode;
}
public void setPrintBarcode(Integer printBarcode) {
this.printBarcode = printBarcode;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getIsAll() {
return isAll;
}
public void setIsAll(Integer isAll) {
this.isAll = isAll;
}
public Integer getPartnerId() {
return partnerId;
}
public void setPartnerId(Integer partnerId) {
this.partnerId = partnerId;
}
public String getCreatedAt() {
return createdAt;
}
public void setCreatedAt(String createdAt) {
this.createdAt = createdAt;
}
public String getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(String updatedAt) {
this.updatedAt = updatedAt;
}
public Integer getStatus() {
return status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getIsDeleted() {
return isDeleted;
}
public void setIsDeleted(Integer isDeleted) {
this.isDeleted = isDeleted;
}
public Integer getTempId() {
return tempId;
}
public void setTempId(Integer tempId) {
this.tempId = tempId;
}
public String getTemprature() {
return temprature;
}
public void setTemprature(String temprature) {
this.temprature = temprature;
}
public Integer getTempMin() {
return tempMin;
}
public void setTempMin(Integer tempMin) {
this.tempMin = tempMin;
}
public Integer getTempMax() {
return tempMax;
}
public void setTempMax(Integer tempMax) {
this.tempMax = tempMax;
}
public Integer getOutOfRange() {
return outOfRange;
}
public void setOutOfRange(Integer outOfRange) {
this.outOfRange = outOfRange;
}
public String getTempType() {
return tempType;
}
public void setTempType(String tempType) {
this.tempType = tempType;
}
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
public String getActionLow() {
return actionLow;
}
public void setActionLow(String actionLow) {
this.actionLow = actionLow;
}
public String getActionHigh() {
return actionHigh;
}
public void setActionHigh(String actionHigh) {
this.actionHigh = actionHigh;
}
public String getIsChecked() {
return isChecked;
}
public void setIsChecked(String isChecked) {
this.isChecked = isChecked;
}
public String getActionId() {
return actionId;
}
public void setActionId(String actionId) {
this.actionId = actionId;
}
}
|