admin
2019-04-22 6351f4de939ffd51b5c10a90b21909206d9c94ab
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
package com.yeshi.fanli.entity.taobao;
 
import java.math.BigDecimal;
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
/**
 * 淘宝店铺信息(新版)
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_taobao_shop_info")
public class TaoBaoShop {
    @Column(name = "tsi_id")
    private Long id;// 卖家ID
    @Column(name = "tsi_user_type")
    private Integer userType;// 用户类型 0-淘宝 1-天猫
    @Column(name = "tsi_shop_id")
    private Long shopId;// 店铺ID
    @Column(name = "tsi_shop_name")
    private String shopName;// 店铺名称
    @Column(name = "tsi_seller_nick")
    private String sellerNick;// 卖家昵称
    @Column(name = "tsi_shop_icon")
    private String shopIcon;// 店铺图标
    @Column(name = "tsi_shop_icon_custom")
    private String shopIconCustom;// 自定义店铺图标
    @Column(name = "tsi_score_goods")
    private BigDecimal scoreGoods;// 商品评分
    @Column(name = "tsi_score_seller")
    private BigDecimal scoreSeller;// 卖家评分
    @Column(name = "tsi_score_logistics")
    private BigDecimal scoreLogistics;// 物流评分
    @Column(name = "tsi_score_goods_d")
    private BigDecimal scoreGoodsD;// 与行业平均分的差值
    @Column(name = "tsi_score_seller_d")
    private BigDecimal scoreSellerD;
    @Column(name = "tsi_score_logistics_d")
    private BigDecimal scoreLogisticsD;
    @Column(name = "tsi_good_rate_percentage")
    private BigDecimal goodRatePercentage;// 好评率
    @Column(name = "tsi_update_time")
    private Date updateTime;
 
    public Integer getUserType() {
        return userType;
    }
 
    public void setUserType(Integer userType) {
        this.userType = userType;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getShopId() {
        return shopId;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public String getShopName() {
        return shopName;
    }
 
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
 
    public String getSellerNick() {
        return sellerNick;
    }
 
    public void setSellerNick(String sellerNick) {
        this.sellerNick = sellerNick;
    }
 
    public String getShopIcon() {
        return shopIcon;
    }
 
    public void setShopIcon(String shopIcon) {
        this.shopIcon = shopIcon;
    }
 
    public String getShopIconCustom() {
        return shopIconCustom;
    }
 
    public void setShopIconCustom(String shopIconCustom) {
        this.shopIconCustom = shopIconCustom;
    }
 
    public BigDecimal getScoreGoods() {
        return scoreGoods;
    }
 
    public void setScoreGoods(BigDecimal scoreGoods) {
        this.scoreGoods = scoreGoods;
    }
 
    public BigDecimal getScoreSeller() {
        return scoreSeller;
    }
 
    public void setScoreSeller(BigDecimal scoreSeller) {
        this.scoreSeller = scoreSeller;
    }
 
    public BigDecimal getScoreLogistics() {
        return scoreLogistics;
    }
 
    public void setScoreLogistics(BigDecimal scoreLogistics) {
        this.scoreLogistics = scoreLogistics;
    }
 
    public BigDecimal getScoreGoodsD() {
        return scoreGoodsD;
    }
 
    public void setScoreGoodsD(BigDecimal scoreGoodsD) {
        this.scoreGoodsD = scoreGoodsD;
    }
 
    public BigDecimal getScoreSellerD() {
        return scoreSellerD;
    }
 
    public void setScoreSellerD(BigDecimal scoreSellerD) {
        this.scoreSellerD = scoreSellerD;
    }
 
    public BigDecimal getScoreLogisticsD() {
        return scoreLogisticsD;
    }
 
    public void setScoreLogisticsD(BigDecimal scoreLogisticsD) {
        this.scoreLogisticsD = scoreLogisticsD;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public BigDecimal getGoodRatePercentage() {
        return goodRatePercentage;
    }
 
    public void setGoodRatePercentage(BigDecimal goodRatePercentage) {
        this.goodRatePercentage = goodRatePercentage;
    }
 
}