wpc
2018-11-27 680fbc9e73da3e11988557cf88fd935efd3e0b1e
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
package com.haicaojie.android.entity;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
/**
 * Created by weikou2015 on 2017/3/8.
 */
 
public class TaoBaoGoodsBrief implements Serializable {
    @Expose
    private String rootCatId;
    @Expose
    private String eventCreatorId;
    @Expose
    private String leafCatId;
    @Expose
    private String rootCatScore;
    @Expose
    private String sellerId;
    @Expose
    private String userType;
    @Expose
    private String baoyou;
    @Expose
    private String shopTitle;
    @Expose
    private String auctionId;
    @Expose
    private String biz30day;
    @Expose
    private String salesCount;
    @Expose
    private String tkRate;
    @Expose
    private String includeDxjh;
    @Expose
    private String reservePrice;
    @Expose
    private String tkCommFee;
    @Expose
    private String totalFee;
    @Expose
    private String totalNum;
    @Expose
    private String zkPrice;
    @Expose
    private String dayLeft;
    @Expose
    private String rlRate;
    @Expose
    private String hasRecommended;
    @Expose
    private String hasSame;
    @Expose
    private String id;
    @Expose
    private String sameItemPid;
    @Expose
    private String couponTotalCount;
    @Expose
    private String couponLeftCount;
    @Expose
    private String couponAmount;
    @Expose
    private String couponStartFee;
    @Expose
    private String title;
    @Expose
    private String quanPrice;
    @Expose
    private String pictUrl;
    @Expose
    private String desc;
    @Expose
    private String auctionUrl;
    @Expose
    private String shopType;//商铺类型(优惠券或者红包)
    @Expose
    private String showType;//优惠类型(优惠券或者红包)
    @Expose
    private HongBaoInfo taoBaoHongBaoInfo;
    @Expose
    private QuanInfo taoBaoQuanInfo;
    @Expose
    private int state;//0正常  1商品下架
 
    public int getState() {
        return state;
    }
 
    public void setState(int state) {
        this.state = state;
    }
 
    public String getDesc() {
        return desc;
    }
 
    public void setDesc(String desc) {
        this.desc = desc;
    }
 
    public String getQuanPrice() {
        return quanPrice;
    }
 
    public void setQuanPrice(String quanPrice) {
        this.quanPrice = quanPrice;
    }
 
    public HongBaoInfo getTaoBaoHongBaoInfo() {
        return taoBaoHongBaoInfo;
    }
 
    public void setTaoBaoHongBaoInfo(HongBaoInfo taoBaoHongBaoInfo) {
        this.taoBaoHongBaoInfo = taoBaoHongBaoInfo;
    }
 
    public String getSalesCount() {
        return salesCount;
    }
 
    public void setSalesCount(String salesCount) {
        this.salesCount = salesCount;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getBaoyou() {
        return baoyou;
    }
 
    public void setBaoyou(String baoyou) {
        this.baoyou = baoyou;
    }
 
    public QuanInfo getTaoBaoQuanInfo() {
        return taoBaoQuanInfo;
    }
 
    public void setTaoBaoQuanInfo(QuanInfo taoBaoQuanInfo) {
        this.taoBaoQuanInfo = taoBaoQuanInfo;
    }
 
    public String getAuctionUrl() {
        return auctionUrl;
    }
 
    public void setAuctionUrl(String auctionUrl) {
        this.auctionUrl = auctionUrl;
    }
 
 
    public String getShopType() {
        return shopType;
    }
 
    public void setShopType(String shopType) {
        this.shopType = shopType;
    }
 
    public String getShowType() {
        return showType;
    }
 
    public void setShowType(String showType) {
        this.showType = showType;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getPictUrl() {
        return pictUrl;
    }
 
    public void setPictUrl(String pictUrl) {
        this.pictUrl = pictUrl;
    }
 
    public String getRootCatId() {
        return rootCatId;
    }
 
    public void setRootCatId(String rootCatId) {
        this.rootCatId = rootCatId;
    }
 
    public String getEventCreatorId() {
        return eventCreatorId;
    }
 
    public void setEventCreatorId(String eventCreatorId) {
        this.eventCreatorId = eventCreatorId;
    }
 
    public String getLeafCatId() {
        return leafCatId;
    }
 
    public void setLeafCatId(String leafCatId) {
        this.leafCatId = leafCatId;
    }
 
    public String getRootCatScore() {
        return rootCatScore;
    }
 
    public void setRootCatScore(String rootCatScore) {
        this.rootCatScore = rootCatScore;
    }
 
    public String getSellerId() {
        return sellerId;
    }
 
    public void setSellerId(String sellerId) {
        this.sellerId = sellerId;
    }
 
    public String getUserType() {
        return userType;
    }
 
    public void setUserType(String userType) {
        this.userType = userType;
    }
 
    public String getShopTitle() {
        return shopTitle;
    }
 
    public void setShopTitle(String shopTitle) {
        this.shopTitle = shopTitle;
    }
 
    public String getAuctionId() {
        return auctionId;
    }
 
    public void setAuctionId(String auctionId) {
        this.auctionId = auctionId;
    }
 
    public String getBiz30day() {
        return biz30day;
    }
 
    public void setBiz30day(String biz30day) {
        this.biz30day = biz30day;
    }
 
    public String getTkRate() {
        return tkRate;
    }
 
    public void setTkRate(String tkRate) {
        this.tkRate = tkRate;
    }
 
    public String getIncludeDxjh() {
        return includeDxjh;
    }
 
    public void setIncludeDxjh(String includeDxjh) {
        this.includeDxjh = includeDxjh;
    }
 
    public String getReservePrice() {
        return reservePrice;
    }
 
    public void setReservePrice(String reservePrice) {
        this.reservePrice = reservePrice;
    }
 
    public String getTkCommFee() {
        return tkCommFee;
    }
 
    public void setTkCommFee(String tkCommFee) {
        this.tkCommFee = tkCommFee;
    }
 
    public String getTotalFee() {
        return totalFee;
    }
 
    public void setTotalFee(String totalFee) {
        this.totalFee = totalFee;
    }
 
    public String getTotalNum() {
        return totalNum;
    }
 
    public void setTotalNum(String totalNum) {
        this.totalNum = totalNum;
    }
 
    public String getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(String zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public String getDayLeft() {
        return dayLeft;
    }
 
    public void setDayLeft(String dayLeft) {
        this.dayLeft = dayLeft;
    }
 
    public String getRlRate() {
        return rlRate;
    }
 
    public void setRlRate(String rlRate) {
        this.rlRate = rlRate;
    }
 
    public String getHasRecommended() {
        return hasRecommended;
    }
 
    public void setHasRecommended(String hasRecommended) {
        this.hasRecommended = hasRecommended;
    }
 
    public String getHasSame() {
        return hasSame;
    }
 
    public void setHasSame(String hasSame) {
        this.hasSame = hasSame;
    }
 
    public String getSameItemPid() {
        return sameItemPid;
    }
 
    public void setSameItemPid(String sameItemPid) {
        this.sameItemPid = sameItemPid;
    }
 
    public String getCouponTotalCount() {
        return couponTotalCount;
    }
 
    public void setCouponTotalCount(String couponTotalCount) {
        this.couponTotalCount = couponTotalCount;
    }
 
    public String getCouponLeftCount() {
        return couponLeftCount;
    }
 
    public void setCouponLeftCount(String couponLeftCount) {
        this.couponLeftCount = couponLeftCount;
    }
 
    public String getCouponAmount() {
        return couponAmount;
    }
 
    public void setCouponAmount(String couponAmount) {
        this.couponAmount = couponAmount;
    }
 
    public String getCouponStartFee() {
        return couponStartFee;
    }
 
    public void setCouponStartFee(String couponStartFee) {
        this.couponStartFee = couponStartFee;
    }
}