Administrator
2018-10-30 c0c91fbda1ba601c4c8cb6d12fd43dfbe02eea5d
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
package com.yeshi.fanli.entity.bus.user;
 
import java.math.BigDecimal;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
 
import com.google.gson.annotations.Expose;
/**
 * 收藏的商品
 * @author cxx
 *
 * @date 2018年1月29日
 */
@Entity
@Table(name="yeshi_ec_collection_Goods")
public class CollectionGoods{
    
    @Id
    @GeneratedValue(strategy=GenerationType.AUTO)
    @Expose
    private long id;
    
    @ManyToOne
    @JoinColumn(name="uid")
    private UserInfo userInfo;
    
    private int rootCatId;// 0,
    private int eventCreatorId;// 0,
    private int leafCatId;// 50011277,
    @Column(length = 50)
    private String debugInfo;// null,
    private int rootCatScore;// 0,
    private long sellerId;// 卖家Id
    private int userType;// 0,
    @Column(length = 256)
    private String shopTitle;// 店铺名称
    @Column(length = 256)
    @Expose
    private String pictUrl;// 主图链接
    @Column(length = 256)
    @Expose
    private String title;// 商品标题
    @Expose
    private long auctionId;// 商品ID
    @Column(length = 256)
    private String couponLink;// 优惠券链�?
    @Column(length = 256)
    private String couponLinkTaoToken;//
    @Column(length = 128)
    private String couponActivityId;//
    @Expose
    private int biz30day;// 4125,
    @Expose
    private BigDecimal tkRate;// 佣金比例 �?��100
    @Column(length = 50)
    private String nick;// "yoyo_808611",
    private int includeDxjh;// 1:营�?
    @Expose
    private BigDecimal reservePrice;// 588,
    private BigDecimal tkCommFee;// 32.04,
    private BigDecimal totalFee;// 4814.43,
    private int totalNum;// 229,
    @Expose
    private BigDecimal zkPrice;// 无线价格
    private int dayLeft;// -17228,
    @Column(length = 50)
    private String tk3rdRate;// null,
    @Column(length = 128)
    @Expose
    private String auctionUrl;// 商品链接
    private double rlRate;// 69.72,
    private int hasRecommended;// 0,
    private int hasSame;// 0,
    private long sameItemPid;// "-232381821",
    private int couponTotalCount;// 优惠券�?�?
    private int couponLeftCount;// 优惠券剩余数�?
    private BigDecimal couponAmount;// 优惠金额
    @Column(length = 50)
    private String eventRate;// null,
    @Column(length = 128)
    private String couponShortLink;// 优惠券短�?
    @Column(length = 50)
    @Expose
    private String couponInfo;// 优惠券信�?
    private BigDecimal couponStartFee;// 优惠券起始优�?
    @Column(length = 20)
    private String couponEffectiveStartTime;// "2017-02-04",优惠券开始时�?
    @Column(length = 20)
    private String couponEffectiveEndTime;// 优惠券结束时�?
    @Column(length = 10)
    private String hasUmpBonus;// null,
    @Column(length = 10)
    private String isBizActivity;// null,
    @Column(length = 10)
    private String umpBonus;// null,
    @Column(length = 30)
    private String rootCategoryName;// 根分�?
    @Column(length = 128)
    private String couponOriLink;// 优惠券原始链�?
    @Column(length = 30)
    private String userTypeName;// 用户类型
    
    private long createTime;
 
    public long getId() {
        return id;
    }
 
    public void setId(long id) {
        this.id = id;
    }
 
    public UserInfo getUserInfo() {
        return userInfo;
    }
 
    public void setUserInfo(UserInfo userInfo) {
        this.userInfo = userInfo;
    }
 
    public long getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(long createTime) {
        this.createTime = createTime;
    }
 
    public int getRootCatId() {
        return rootCatId;
    }
 
    public void setRootCatId(int rootCatId) {
        this.rootCatId = rootCatId;
    }
 
    public int getEventCreatorId() {
        return eventCreatorId;
    }
 
    public void setEventCreatorId(int eventCreatorId) {
        this.eventCreatorId = eventCreatorId;
    }
 
    public int getLeafCatId() {
        return leafCatId;
    }
 
    public void setLeafCatId(int leafCatId) {
        this.leafCatId = leafCatId;
    }
 
    public String getDebugInfo() {
        return debugInfo;
    }
 
    public void setDebugInfo(String debugInfo) {
        this.debugInfo = debugInfo;
    }
 
    public int getRootCatScore() {
        return rootCatScore;
    }
 
    public void setRootCatScore(int rootCatScore) {
        this.rootCatScore = rootCatScore;
    }
 
    public long getSellerId() {
        return sellerId;
    }
 
    public void setSellerId(long sellerId) {
        this.sellerId = sellerId;
    }
 
    public int getUserType() {
        return userType;
    }
 
    public void setUserType(int userType) {
        this.userType = userType;
    }
 
    public String getShopTitle() {
        return shopTitle;
    }
 
    public void setShopTitle(String shopTitle) {
        this.shopTitle = shopTitle;
    }
 
    public String getPictUrl() {
        return pictUrl;
    }
 
    public void setPictUrl(String pictUrl) {
        this.pictUrl = pictUrl;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public long getAuctionId() {
        return auctionId;
    }
 
    public void setAuctionId(long auctionId) {
        this.auctionId = auctionId;
    }
 
    public String getCouponLink() {
        return couponLink;
    }
 
    public void setCouponLink(String couponLink) {
        this.couponLink = couponLink;
    }
 
    public String getCouponLinkTaoToken() {
        return couponLinkTaoToken;
    }
 
    public void setCouponLinkTaoToken(String couponLinkTaoToken) {
        this.couponLinkTaoToken = couponLinkTaoToken;
    }
 
    public String getCouponActivityId() {
        return couponActivityId;
    }
 
    public void setCouponActivityId(String couponActivityId) {
        this.couponActivityId = couponActivityId;
    }
 
    public int getBiz30day() {
        return biz30day;
    }
 
    public void setBiz30day(int biz30day) {
        this.biz30day = biz30day;
    }
 
    public BigDecimal getTkRate() {
        return tkRate;
    }
 
    public void setTkRate(BigDecimal tkRate) {
        this.tkRate = tkRate;
    }
 
    public String getNick() {
        return nick;
    }
 
    public void setNick(String nick) {
        this.nick = nick;
    }
 
    public int getIncludeDxjh() {
        return includeDxjh;
    }
 
    public void setIncludeDxjh(int includeDxjh) {
        this.includeDxjh = includeDxjh;
    }
 
    public BigDecimal getReservePrice() {
        return reservePrice;
    }
 
    public void setReservePrice(BigDecimal reservePrice) {
        this.reservePrice = reservePrice;
    }
 
    public BigDecimal getTkCommFee() {
        return tkCommFee;
    }
 
    public void setTkCommFee(BigDecimal tkCommFee) {
        this.tkCommFee = tkCommFee;
    }
 
    public BigDecimal getTotalFee() {
        return totalFee;
    }
 
    public void setTotalFee(BigDecimal totalFee) {
        this.totalFee = totalFee;
    }
 
    public int getTotalNum() {
        return totalNum;
    }
 
    public void setTotalNum(int totalNum) {
        this.totalNum = totalNum;
    }
 
    public BigDecimal getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(BigDecimal zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public int getDayLeft() {
        return dayLeft;
    }
 
    public void setDayLeft(int dayLeft) {
        this.dayLeft = dayLeft;
    }
 
    public String getTk3rdRate() {
        return tk3rdRate;
    }
 
    public void setTk3rdRate(String tk3rdRate) {
        this.tk3rdRate = tk3rdRate;
    }
 
    public String getAuctionUrl() {
        return auctionUrl;
    }
 
    public void setAuctionUrl(String auctionUrl) {
        this.auctionUrl = auctionUrl;
    }
 
    public double getRlRate() {
        return rlRate;
    }
 
    public void setRlRate(double rlRate) {
        this.rlRate = rlRate;
    }
 
    public int getHasRecommended() {
        return hasRecommended;
    }
 
    public void setHasRecommended(int hasRecommended) {
        this.hasRecommended = hasRecommended;
    }
 
    public int getHasSame() {
        return hasSame;
    }
 
    public void setHasSame(int hasSame) {
        this.hasSame = hasSame;
    }
 
    public long getSameItemPid() {
        return sameItemPid;
    }
 
    public void setSameItemPid(long sameItemPid) {
        this.sameItemPid = sameItemPid;
    }
 
    public int getCouponTotalCount() {
        return couponTotalCount;
    }
 
    public void setCouponTotalCount(int couponTotalCount) {
        this.couponTotalCount = couponTotalCount;
    }
 
    public int getCouponLeftCount() {
        return couponLeftCount;
    }
 
    public void setCouponLeftCount(int couponLeftCount) {
        this.couponLeftCount = couponLeftCount;
    }
 
    public BigDecimal getCouponAmount() {
        return couponAmount;
    }
 
    public void setCouponAmount(BigDecimal couponAmount) {
        this.couponAmount = couponAmount;
    }
 
    public String getEventRate() {
        return eventRate;
    }
 
    public void setEventRate(String eventRate) {
        this.eventRate = eventRate;
    }
 
    public String getCouponShortLink() {
        return couponShortLink;
    }
 
    public void setCouponShortLink(String couponShortLink) {
        this.couponShortLink = couponShortLink;
    }
 
    public String getCouponInfo() {
        return couponInfo;
    }
 
    public void setCouponInfo(String couponInfo) {
        this.couponInfo = couponInfo;
    }
 
    public BigDecimal getCouponStartFee() {
        return couponStartFee;
    }
 
    public void setCouponStartFee(BigDecimal couponStartFee) {
        this.couponStartFee = couponStartFee;
    }
 
    public String getCouponEffectiveStartTime() {
        return couponEffectiveStartTime;
    }
 
    public void setCouponEffectiveStartTime(String couponEffectiveStartTime) {
        this.couponEffectiveStartTime = couponEffectiveStartTime;
    }
 
    public String getCouponEffectiveEndTime() {
        return couponEffectiveEndTime;
    }
 
    public void setCouponEffectiveEndTime(String couponEffectiveEndTime) {
        this.couponEffectiveEndTime = couponEffectiveEndTime;
    }
 
    public String getHasUmpBonus() {
        return hasUmpBonus;
    }
 
    public void setHasUmpBonus(String hasUmpBonus) {
        this.hasUmpBonus = hasUmpBonus;
    }
 
    public String getIsBizActivity() {
        return isBizActivity;
    }
 
    public void setIsBizActivity(String isBizActivity) {
        this.isBizActivity = isBizActivity;
    }
 
    public String getUmpBonus() {
        return umpBonus;
    }
 
    public void setUmpBonus(String umpBonus) {
        this.umpBonus = umpBonus;
    }
 
    public String getRootCategoryName() {
        return rootCategoryName;
    }
 
    public void setRootCategoryName(String rootCategoryName) {
        this.rootCategoryName = rootCategoryName;
    }
 
    public String getCouponOriLink() {
        return couponOriLink;
    }
 
    public void setCouponOriLink(String couponOriLink) {
        this.couponOriLink = couponOriLink;
    }
 
    public String getUserTypeName() {
        return userTypeName;
    }
 
    public void setUserTypeName(String userTypeName) {
        this.userTypeName = userTypeName;
    }
    
}