admin
2022-03-28 2f5935ed11672046c37f733d855214f6147b4b58
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
package com.yeshi.common.entity.taobao;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Date;
 
 
import com.google.gson.annotations.Expose;
import org.yeshi.utils.generater.mybatis.Column;
import org.yeshi.utils.generater.mybatis.Table;
 
 
/**
 * 淘宝店铺信息(新版)
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_taobao_shop_info")
public class TaoBaoShop implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    @Expose
    @Column(name = "tsi_id")
    private Long id;// 卖家ID
    
    @Expose
    @Column(name = "tsi_user_type")
    private Integer userType;// 用户类型 0-淘宝 1-天猫  
    
    @Expose
    @Column(name = "tsi_shop_id")
    private Long shopId;// 店铺ID
    
    @Expose
    @Column(name = "tsi_shop_name")
    private String shopName;// 店铺名称
    
    @Column(name = "tsi_seller_nick")
    private String sellerNick;// 卖家昵
    
    @Expose
    @Column(name = "tsi_shop_name_custom")
    private String shopNameCustom;// 自定义店铺名称
    
    @Expose
    @Column(name = "tsi_shop_icon")
    private String shopIcon;// 店铺图标
    
    @Column(name = "tsi_shop_icon_custom")
    private String shopIconCustom;// 自定义店铺图标
    
    @Expose
    @Column(name = "tsi_score_goods")
    private BigDecimal scoreGoods;// 商品评分
    
    @Expose
    @Column(name = "tsi_score_seller")
    private BigDecimal scoreSeller;// 卖家评分
    
    @Expose
    @Column(name = "tsi_score_logistics")
    private BigDecimal scoreLogistics;// 物流评分
    
    @Expose
    @Column(name = "tsi_score_goods_d")
    private BigDecimal scoreGoodsD;// 与行业平均分的差值
    
    @Expose
    @Column(name = "tsi_score_seller_d")
    private BigDecimal scoreSellerD;
    
    @Expose
    @Column(name = "tsi_score_logistics_d")
    private BigDecimal scoreLogisticsD;
    
    @Expose
    @Column(name = "tsi_good_rate_percentage")
    private BigDecimal goodRatePercentage;// 好评率
    
    @Column(name = "tsi_update_time")
    private Date updateTime;
    
    @Expose
    @Column(name = "tsi_shop_link")
    private String shopLink; // 店铺链接
    
    @Column(name = "tsi_key")
    private String key; // 关键词
    
    
    public TaoBaoShop() {}
    
    public TaoBaoShop(Long id) {
        this.id = id;
    }
    
    
 
    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;
    }
 
    public String getShopLink() {
        return shopLink;
    }
 
    public void setShopLink(String shopLink) {
        this.shopLink = shopLink;
    }
 
    public String getShopNameCustom() {
        return shopNameCustom;
    }
 
    public void setShopNameCustom(String shopNameCustom) {
        this.shopNameCustom = shopNameCustom;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
}