GoGrabModal.java
6.56 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
package etelligens.com.foodsafety.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class GoGrabModal {
@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 Integer 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 String youTubeUrl;
@SerializedName("slug")
@Expose
private String slug;
@SerializedName("barcode_img_path")
@Expose
private String barcodeImgPath;
@SerializedName("product_price")
@Expose
private String 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("category")
@Expose
private Integer category;
@SerializedName("image_url")
@Expose
private String imageUrl;
@SerializedName("is_mapped")
@Expose
private Integer isMapped;
public Integer getIsMapped() {
return isMapped;
}
public void setIsMapped(Integer isMapped) {
this.isMapped = isMapped;
}
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 Integer getLabelId() {
return labelId;
}
public void setLabelId(Integer 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 String getYouTubeUrl() {
return youTubeUrl;
}
public void setYouTubeUrl(String 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 String getProductPrice() {
return productPrice;
}
public void setProductPrice(String 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 getCategory() {
return category;
}
public void setCategory(Integer category) {
this.category = category;
}
public String getImageUrl() {
return imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
}