yujian
2020-06-29 ec60e757d358636dcac1589c44a66f3e276fe58c
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
package com.yeshi.fanli.entity.goods;
 
import java.util.Date;
 
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
import org.springframework.data.mongodb.core.mapping.Field;
 
/**
 *  拉新商品
 * 
 * @author Administrator
 *
 */
@Document(collection = "pullNewGoods")
public class PullNewGoods {
    @Id
    private Integer product_id;// 自增ID
    @Field
    @Indexed
    private Long itemid;// 宝贝ID
    @Field
    private String itemtitle;// 宝贝标题
    @Field
    private String itemshorttitle;// 宝贝短标题
    @Field
    private String itemdesc;// 宝贝推荐语
    @Field
    private Double itemprice;// 在售价
    @Field
    private Integer itemsale;// 宝贝月销量
    @Field
    private Integer itemsale2;// 宝贝近2小时跑单
    @Field
    private Integer todaysale;// 当天销量
    @Field
    private String itempic;// 宝贝主图原始图像
    @Field
    private String itempic_copy;// 推广长图
    @Field
    private String taobao_image;// 轮播主图,用英文逗号分隔开来
    @Field
    private Integer fqcat;// 商品类目
    @Field
    private Double itemendprice;// 宝贝券后价
    @Field
    private String shoptype;// 店铺类型
    @Field
    private String couponurl;// 优惠券链接
    @Field
    private Double couponmoney;// 优惠券金额
    @Field
    private Integer is_brand;// 是否为品牌产品
    @Field
    private Integer is_live;// 是否为直播
    @Field
    private String guide_article;// 推广导购文案
    @Field
    private String videoid;// 商品视频ID
    @Field
    private String activity_type;// 活动类型
    @Field
    private String planlink;// 营销计划链接
    @Field
    private String userid;// 店主的userid
    @Field
    private String sellernick;// 店铺掌柜名
    @Field
    private String shopname;// 店铺名
    @Field
    private String tktype;// 佣金计划:隐藏 ,营销
    @Field
    private Double tkrates;// 佣金比例
    @Field
    private Integer cuntao;// 是否村淘(1是)
    @Field
    private Double tkmoney;// 预计可得(宝贝价格 * 佣金比例 / 100)
    @Field
    private Integer couponreceive2;// 当天优惠券领取量
    @Field
    private Integer couponsurplus;// 优惠券剩余量
    @Field
    private Integer couponnum;// 优惠券总数量
    @Field
    private String coupon_condition;// 优惠券使用条件
    @Field
    private String couponexplain;// 优惠券使用条件
    @Field
    private Integer couponstarttime;// 优惠券开始时间
    @Field
    private Integer couponendtime;// 优惠券结束时间
    @Field
    private Integer start_time;// 活动开始时间
    @Field
    private Integer end_time;// 活动结束时间
    @Field
    private Integer starttime;// 发布时间
    @Field
    private Integer report_status;// 举报处理条件 0未举报 1为待处理 2为忽略 3为下架
    @Field
    private Integer general_index;// 好单指数
    @Field
    private String seller_name;// 放单人名号
    @Field
    private Double discount;// 折扣力度
    @Field
    private Double deposit;// 双十一定金
    @Field
    private Double deposit_deduct;// 双十一定金抵扣金额
    @Field
    private Date createTime;// 创建时间
    @Field
    private Date updateTime;// 更新时间
    @Field
    private String activityid;
 
    public String getActivityid() {
        return activityid;
    }
 
    public void setActivityid(String activityid) {
        this.activityid = activityid;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public Integer getProduct_id() {
        return product_id;
    }
 
    public void setProduct_id(Integer product_id) {
        this.product_id = product_id;
    }
 
    public Long getItemid() {
        return itemid;
    }
 
    public void setItemid(Long itemid) {
        this.itemid = itemid;
    }
 
    public String getItemtitle() {
        return itemtitle;
    }
 
    public void setItemtitle(String itemtitle) {
        this.itemtitle = itemtitle;
    }
 
    public String getItemshorttitle() {
        return itemshorttitle;
    }
 
    public void setItemshorttitle(String itemshorttitle) {
        this.itemshorttitle = itemshorttitle;
    }
 
    public String getItemdesc() {
        return itemdesc;
    }
 
    public void setItemdesc(String itemdesc) {
        this.itemdesc = itemdesc;
    }
 
    public Double getItemprice() {
        return itemprice;
    }
 
    public void setItemprice(Double itemprice) {
        this.itemprice = itemprice;
    }
 
    public Integer getItemsale() {
        return itemsale;
    }
 
    public void setItemsale(Integer itemsale) {
        this.itemsale = itemsale;
    }
 
    public Integer getItemsale2() {
        return itemsale2;
    }
 
    public void setItemsale2(Integer itemsale2) {
        this.itemsale2 = itemsale2;
    }
 
    public Integer getTodaysale() {
        return todaysale;
    }
 
    public void setTodaysale(Integer todaysale) {
        this.todaysale = todaysale;
    }
 
    public String getItempic() {
        return itempic;
    }
 
    public void setItempic(String itempic) {
        this.itempic = itempic;
    }
 
    public String getItempic_copy() {
        return itempic_copy;
    }
 
    public void setItempic_copy(String itempic_copy) {
        this.itempic_copy = itempic_copy;
    }
 
    public String getTaobao_image() {
        return taobao_image;
    }
 
    public void setTaobao_image(String taobao_image) {
        this.taobao_image = taobao_image;
    }
 
    public Integer getFqcat() {
        return fqcat;
    }
 
    public void setFqcat(Integer fqcat) {
        this.fqcat = fqcat;
    }
 
    public Double getItemendprice() {
        return itemendprice;
    }
 
    public void setItemendprice(Double itemendprice) {
        this.itemendprice = itemendprice;
    }
 
    public String getShoptype() {
        return shoptype;
    }
 
    public void setShoptype(String shoptype) {
        this.shoptype = shoptype;
    }
 
    public String getCouponurl() {
        return couponurl;
    }
 
    public void setCouponurl(String couponurl) {
        this.couponurl = couponurl;
    }
 
    public Double getCouponmoney() {
        return couponmoney;
    }
 
    public void setCouponmoney(Double couponmoney) {
        this.couponmoney = couponmoney;
    }
 
    public Integer getIs_brand() {
        return is_brand;
    }
 
    public void setIs_brand(Integer is_brand) {
        this.is_brand = is_brand;
    }
 
    public Integer getIs_live() {
        return is_live;
    }
 
    public void setIs_live(Integer is_live) {
        this.is_live = is_live;
    }
 
    public String getGuide_article() {
        return guide_article;
    }
 
    public void setGuide_article(String guide_article) {
        this.guide_article = guide_article;
    }
 
    public String getVideoid() {
        return videoid;
    }
 
    public void setVideoid(String videoid) {
        this.videoid = videoid;
    }
 
    public String getActivity_type() {
        return activity_type;
    }
 
    public void setActivity_type(String activity_type) {
        this.activity_type = activity_type;
    }
 
    public String getPlanlink() {
        return planlink;
    }
 
    public void setPlanlink(String planlink) {
        this.planlink = planlink;
    }
 
    public String getUserid() {
        return userid;
    }
 
    public void setUserid(String userid) {
        this.userid = userid;
    }
 
    public String getSellernick() {
        return sellernick;
    }
 
    public void setSellernick(String sellernick) {
        this.sellernick = sellernick;
    }
 
    public String getShopname() {
        return shopname;
    }
 
    public void setShopname(String shopname) {
        this.shopname = shopname;
    }
 
    public String getTktype() {
        return tktype;
    }
 
    public void setTktype(String tktype) {
        this.tktype = tktype;
    }
 
    public Double getTkrates() {
        return tkrates;
    }
 
    public void setTkrates(Double tkrates) {
        this.tkrates = tkrates;
    }
 
    public Integer getCuntao() {
        return cuntao;
    }
 
    public void setCuntao(Integer cuntao) {
        this.cuntao = cuntao;
    }
 
    public Double getTkmoney() {
        return tkmoney;
    }
 
    public void setTkmoney(Double tkmoney) {
        this.tkmoney = tkmoney;
    }
 
    public Integer getCouponreceive2() {
        return couponreceive2;
    }
 
    public void setCouponreceive2(Integer couponreceive2) {
        this.couponreceive2 = couponreceive2;
    }
 
    public Integer getCouponsurplus() {
        return couponsurplus;
    }
 
    public void setCouponsurplus(Integer couponsurplus) {
        this.couponsurplus = couponsurplus;
    }
 
    public Integer getCouponnum() {
        return couponnum;
    }
 
    public void setCouponnum(Integer couponnum) {
        this.couponnum = couponnum;
    }
 
    public String getCouponexplain() {
        return couponexplain;
    }
 
    public void setCouponexplain(String couponexplain) {
        this.couponexplain = couponexplain;
    }
 
    public Integer getCouponstarttime() {
        return couponstarttime;
    }
 
    public void setCouponstarttime(Integer couponstarttime) {
        this.couponstarttime = couponstarttime;
    }
 
    public Integer getCouponendtime() {
        return couponendtime;
    }
 
    public void setCouponendtime(Integer couponendtime) {
        this.couponendtime = couponendtime;
    }
 
    public Integer getStart_time() {
        return start_time;
    }
 
    public void setStart_time(Integer start_time) {
        this.start_time = start_time;
    }
 
    public Integer getEnd_time() {
        return end_time;
    }
 
    public void setEnd_time(Integer end_time) {
        this.end_time = end_time;
    }
 
    public Integer getStarttime() {
        return starttime;
    }
 
    public void setStarttime(Integer starttime) {
        this.starttime = starttime;
    }
 
    public Integer getReport_status() {
        return report_status;
    }
 
    public void setReport_status(Integer report_status) {
        this.report_status = report_status;
    }
 
    public Integer getGeneral_index() {
        return general_index;
    }
 
    public void setGeneral_index(Integer general_index) {
        this.general_index = general_index;
    }
 
    public String getSeller_name() {
        return seller_name;
    }
 
    public void setSeller_name(String seller_name) {
        this.seller_name = seller_name;
    }
 
    public Double getDiscount() {
        return discount;
    }
 
    public void setDiscount(Double discount) {
        this.discount = discount;
    }
 
    public Double getDeposit() {
        return deposit;
    }
 
    public void setDeposit(Double deposit) {
        this.deposit = deposit;
    }
 
    public Double getDeposit_deduct() {
        return deposit_deduct;
    }
 
    public void setDeposit_deduct(Double deposit_deduct) {
        this.deposit_deduct = deposit_deduct;
    }
 
    public String getCoupon_condition() {
        return coupon_condition;
    }
 
    public void setCoupon_condition(String coupon_condition) {
        this.coupon_condition = coupon_condition;
    }
 
}