admin
2022-04-16 04f09e52ffd4681bdfd85e51acd3da0d1280c3d3
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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
package com.yeshi.buwan.dto.tb;
 
import com.google.gson.annotations.Expose;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Field;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
 
/**
 * 淘宝商品信息
 * 
 * @author Administrator
 *
 */
 
public class TaoBaoGoodsBrief extends TaoBaoGoodsYuShouInfo implements Serializable {
    
    
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    //@org.yeshi.utils.mybatis.Column(name = "id")
    @Expose
    private Long id;
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "rootCatId")
    private Integer rootCatId;// 0,  一级类目ID
 
    //@org.yeshi.utils.mybatis.Column(name = "eventCreatorId")
    private Integer eventCreatorId;// 0,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "leafCatId")
    private Integer leafCatId;// 50011277, 子类目id
 
    //@org.yeshi.utils.mybatis.Column(name = "debugInfo")
    private String debugInfo;// null,
 
    //@org.yeshi.utils.mybatis.Column(name = "rootCatScore")
    private Integer rootCatScore;// 0,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "sellerId")
    private Long sellerId;// 卖家Id
 
    @Field
    @Expose
    //@org.yeshi.utils.mybatis.Column(name = "userType")
    private Integer userType;// 0,
 
    @Field
    @Expose
    //@org.yeshi.utils.mybatis.Column(name = "shopTitle")
    private String shopTitle;// 店铺名称
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "pictUrl")
    @Expose
    private String pictUrl;// 主图链接
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "pictUrlWhite")
    @Expose
    private String pictUrlWhite;// 白底色图片链接
    
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "title")
    @Expose
    private String title;// 商品标题
 
    @Field
    @Indexed
    //@org.yeshi.utils.mybatis.Column(name = "auctionId")
    @Expose
    private Long auctionId;// 商品ID
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponLink")
    @Expose
    private String couponLink;// 优惠券链�?
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponLinkTaoToken")
    @Expose
    private String couponLinkTaoToken;//
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponActivityId")
    @Expose
    private String couponActivityId;//
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "biz30day")
    @Expose
    private Integer biz30day;// 月销量
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "tkRate")
    @Expose
    private BigDecimal tkRate;// 佣金比例 �?��100
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "nick")
    @Expose
    private String nick;// "yoyo_808611", 店铺名称
 
    //@org.yeshi.utils.mybatis.Column(name = "includeDxjh")
    @Expose
    private Integer includeDxjh;// 1:定向计划
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "reservePrice")
    @Expose
    private BigDecimal reservePrice;// 588,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "tkCommFee")
    @Expose
    private BigDecimal tkCommFee;// 32.04,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "totalFee")
    @Expose
    private BigDecimal totalFee;// 4814.43,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "totalNum")
    @Expose
    private Integer totalNum;// 229, 库存数量
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "zkPrice")
    @Expose
    private BigDecimal zkPrice;// 无线价格,在售价
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "dayLeft")
    @Expose
    private Integer dayLeft;// -17228,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "tk3rdRate")
    @Expose
    private String tk3rdRate;// null,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "auctionUrl")
    @Expose
    private String auctionUrl;// 商品链接
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "rlRate")
    @Expose
    private Double rlRate;// 69.72,
 
    //@org.yeshi.utils.mybatis.Column(name = "hasRecommended")
    @Expose
    private Integer hasRecommended;// 0,
 
    //@org.yeshi.utils.mybatis.Column(name = "hasSame")
    @Expose
    private Integer hasSame;// 0,
 
    //@org.yeshi.utils.mybatis.Column(name = "sameItemPid")
    @Expose
    private Long sameItemPid;// "-232381821",
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponTotalCount")
    @Expose
    private Integer couponTotalCount;// 优惠券�?�?
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponLeftCount")
    @Expose
    private Integer couponLeftCount;// 优惠券剩余数�?
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponAmount")
    @Expose
    private BigDecimal couponAmount;// 优惠金额
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "eventRate")
    @Expose
    private String eventRate;// null,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponShortLink")
    @Expose
    private String couponShortLink;// 优惠券短�?
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponInfo")
    @Expose
    private String couponInfo;// 优惠券信�?
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponStartFee")
    @Expose
    private BigDecimal couponStartFee;// 优惠券起始优�?
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponEffectiveStartTime")
    @Expose
    private String couponEffectiveStartTime;// "2017-02-04",优惠券开始时�?
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponEffectiveEndTime")
    @Expose
    private String couponEffectiveEndTime;// 优惠券结束时�?
 
    //@org.yeshi.utils.mybatis.Column(name = "hasUmpBonus")
    @Expose
    private String hasUmpBonus;// null,
 
    //@org.yeshi.utils.mybatis.Column(name = "isBizActivity")
    @Expose
    private String isBizActivity;// null,
 
    //@org.yeshi.utils.mybatis.Column(name = "umpBonus")
    @Expose
    private String umpBonus;// null,
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "rootCategoryName")
    @Expose
    private String rootCategoryName;//  一级分类名称
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "couponOriLink")
    @Expose
    private String couponOriLink;// 优惠券原始链�?
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "userTypeName")
    @Expose
    private String userTypeName;// 用户类型
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "tkMktStatus")
    @Expose
    private String tkMktStatus; // 1:营销返利
    
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "totalSales")
    @Expose
    private Integer totalSales;// 229, 淘客30天月推广量
    
    // 入库时间
    //@org.yeshi.utils.mybatis.Column(name = "createtime")
    @Expose
    private Date createtime;
    // 更新时间
 
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "updatetime")
    @Expose
    private Date updatetime;
 
    //@org.yeshi.utils.mybatis.Column(name = "state")
    @Expose
    private Integer state;// 0-正常 1-商品下架
    
    @Field
    //@org.yeshi.utils.mybatis.Column(name = "material_lib_type")
    private Integer materialLibType;//物料库类型
    
    private String description;//推荐语
    
    private boolean shopCoupon;//是否为店铺券
    
    
 
    /* 新增字段 2018-7-16 ; 由于数据未从淘宝获取成功,暂不启用 */
    
 
 
    public boolean isShopCoupon() {
        return shopCoupon;
    }
 
    public void setShopCoupon(boolean shopCoupon) {
        this.shopCoupon = shopCoupon;
    }
 
    public Integer getMaterialLibType() {
        return materialLibType;
    }
 
    public void setMaterialLibType(Integer materialLibType) {
        this.materialLibType = materialLibType;
    }
 
    // //@org.yeshi.utils.mybatis.Column(name = "catLeafName")
    private String leafName; // 子类目名称
 
    
    // //@org.yeshi.utils.mybatis.Column(name = "isPrepay")
    private Integer isPrepay; // 是否加入消费者保障 1:是 0 否
 
    // //@org.yeshi.utils.mybatis.Column(name = "shopDsr")
    private Integer shopDsr; // 店铺评分
 
    // //@org.yeshi.utils.mybatis.Column(name = "ratesum")
    private Integer ratesum; // 卖家等级
 
    // //@org.yeshi.utils.mybatis.Column(name = "rfdRate")
    private Integer rfdRate; // 退款率是否低于行业均值
 
    // //@org.yeshi.utils.mybatis.Column(name = "goodRate")
    private Integer goodRate; // 好评率是否高于行业均值
 
    // //@org.yeshi.utils.mybatis.Column(name = "payRate30")
    private Integer payRate30; // 成交转化是否高于行业均值
 
    // //@org.yeshi.utils.mybatis.Column(name = "freeShipment")
    private Integer freeShipment; // 是否包邮
 
    @Expose
    private String salesCount;
 
    @Expose
    private List<String> imgList;
 
    private String dxjhInfo;
 
    private String provcity;
 
    private BigDecimal minTkRate;//最小返利比例
 
    public BigDecimal getMinTkRate() {
        return minTkRate;
    }
 
    public void setMinTkRate(BigDecimal minTkRate) {
        this.minTkRate = minTkRate;
    }
 
    public Date getUpdatetime() {
        return updatetime;
    }
 
    public void setUpdatetime(Date updatetime) {
        this.updatetime = updatetime;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public String getProvcity() {
        return provcity;
    }
 
    public void setProvcity(String provcity) {
        this.provcity = provcity;
    }
 
    public String getDxjhInfo() {
        return dxjhInfo;
    }
 
    public void setDxjhInfo(String dxjhInfo) {
        this.dxjhInfo = dxjhInfo;
    }
 
    public Date getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(Date createtime) {
        this.createtime = createtime;
    }
 
    public TaoBaoGoodsBrief() {
        this.eventCreatorId = 0;
        this.hasRecommended = 0;
        this.hasSame = 0;
        this.rootCatId = 0;
        this.rootCatScore = 0;
        this.sameItemPid = 0L;
        this.totalFee = new BigDecimal(0);
        this.couponStartFee = new BigDecimal(0);
        this.couponTotalCount = 0;
        this.dayLeft = 0;
        this.leafCatId = 0;
        this.couponAmount = new BigDecimal(0);
        this.rlRate = 0.0;
        this.couponLeftCount = 0;
        this.includeDxjh = 0;
 
    }
 
    public TaoBaoGoodsBrief(Long id) {
        super();
        this.id = id;
    }
 
    public TaoBaoGoodsBrief(String shopTitle) {
        super();
        this.shopTitle = shopTitle;
    }
 
    public List<String> getImgList() {
        return imgList;
    }
 
    public void setImgList(List<String> imgList) {
        this.imgList = imgList;
    }
 
    public Integer getRootCatId() {
        return rootCatId;
    }
 
    public void setRootCatId(Integer rootCatId) {
        this.rootCatId = rootCatId;
    }
 
    public Integer getEventCreatorId() {
        return eventCreatorId;
    }
 
    public void setEventCreatorId(Integer eventCreatorId) {
        this.eventCreatorId = eventCreatorId;
    }
 
    public Integer getLeafCatId() {
        return leafCatId;
    }
 
    public void setLeafCatId(Integer leafCatId) {
        this.leafCatId = leafCatId;
    }
 
    public String getDebugInfo() {
        return debugInfo;
    }
 
    public void setDebugInfo(String debugInfo) {
        this.debugInfo = debugInfo;
    }
 
    public Integer getRootCatScore() {
        return rootCatScore;
    }
 
    public void setRootCatScore(Integer rootCatScore) {
        this.rootCatScore = rootCatScore;
    }
 
    public Long getSellerId() {
        return sellerId;
    }
 
    public void setSellerId(Long sellerId) {
        this.sellerId = sellerId;
    }
 
    public Integer getUserType() {
        return userType;
    }
 
    public void setUserType(Integer 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 Integer getBiz30day() {
        return biz30day;
    }
 
    public void setBiz30day(Integer 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 Integer getIncludeDxjh() {
        return includeDxjh;
    }
 
    public void setIncludeDxjh(Integer includeDxjh) {
        this.includeDxjh = includeDxjh;
    }
 
    public BigDecimal getTkCommFee() {
        return tkCommFee;
    }
 
    public BigDecimal getReservePrice() {
        return reservePrice;
    }
 
    public void setReservePrice(BigDecimal reservePrice) {
        this.reservePrice = reservePrice;
    }
 
    public BigDecimal getTotalFee() {
        return totalFee;
    }
 
    public void setTotalFee(BigDecimal totalFee) {
        this.totalFee = totalFee;
    }
 
    public void setTkCommFee(BigDecimal tkCommFee) {
        this.tkCommFee = tkCommFee;
    }
 
    public Integer getTotalNum() {
        return totalNum;
    }
 
    public void setTotalNum(Integer totalNum) {
        this.totalNum = totalNum;
    }
 
    public BigDecimal getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(BigDecimal zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public Integer getDayLeft() {
        return dayLeft;
    }
 
    public void setDayLeft(Integer 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 Integer getHasRecommended() {
        return hasRecommended;
    }
 
    public void setHasRecommended(Integer hasRecommended) {
        this.hasRecommended = hasRecommended;
    }
 
    public Integer getHasSame() {
        return hasSame;
    }
 
    public void setHasSame(Integer hasSame) {
        this.hasSame = hasSame;
    }
 
    public Long getSameItemPid() {
        return sameItemPid;
    }
 
    public void setSameItemPid(Long sameItemPid) {
        this.sameItemPid = sameItemPid;
    }
 
    public Integer getCouponTotalCount() {
        return couponTotalCount;
    }
 
    public void setCouponTotalCount(Integer couponTotalCount) {
        this.couponTotalCount = couponTotalCount;
    }
 
    public Integer getCouponLeftCount() {
        return couponLeftCount;
    }
 
    public void setCouponLeftCount(Integer 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;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTkMktStatus() {
        return tkMktStatus;
    }
 
    public void setTkMktStatus(String tkMktStatus) {
        this.tkMktStatus = tkMktStatus;
    }
 
    public String getSalesCount() {
        return salesCount;
    }
 
    public void setSalesCount(String salesCount) {
        this.salesCount = salesCount;
    }
    
 
    public Integer getIsPrepay() {
        return isPrepay;
    }
 
    public void setIsPrepay(Integer isPrepay) {
        this.isPrepay = isPrepay;
    }
 
    public Integer getShopDsr() {
        return shopDsr;
    }
 
    public void setShopDsr(Integer shopDsr) {
        this.shopDsr = shopDsr;
    }
 
    public Integer getRatesum() {
        return ratesum;
    }
 
    public void setRatesum(Integer ratesum) {
        this.ratesum = ratesum;
    }
 
    public Integer getRfdRate() {
        return rfdRate;
    }
 
    public void setRfdRate(Integer rfdRate) {
        this.rfdRate = rfdRate;
    }
 
    public Integer getGoodRate() {
        return goodRate;
    }
 
    public void setGoodRate(Integer goodRate) {
        this.goodRate = goodRate;
    }
 
    public Integer getPayRate30() {
        return payRate30;
    }
 
    public void setPayRate30(Integer payRate30) {
        this.payRate30 = payRate30;
    }
 
    public Integer getFreeShipment() {
        return freeShipment;
    }
 
    public void setFreeShipment(Integer freeShipment) {
        this.freeShipment = freeShipment;
    }
 
 
    public String getLeafName() {
        return leafName;
    }
 
    public void setLeafName(String leafName) {
        this.leafName = leafName;
    }
 
    public Integer getTotalSales() {
        return totalSales;
    }
 
    public void setTotalSales(Integer totalSales) {
        this.totalSales = totalSales;
    }
 
    public String getPictUrlWhite() {
        return pictUrlWhite;
    }
 
    public void setPictUrlWhite(String pictUrlWhite) {
        this.pictUrlWhite = pictUrlWhite;
    }
    
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
    
}