admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
package com.yeshi.fanli.vo.goods;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
import com.google.gson.annotations.Expose;
 
/**
 * 店铺信息
 * 
 * @author Administrator
 *
 */
public class ShopInfoVO implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    @Expose
    private String id;// 卖家ID
 
    @Expose
    private Integer userType;// 类型 10-淘宝 11-天猫 20-京东 30-拼多多
 
    @Expose
    private String shopName;// 店铺名称
 
    @Expose
    private String shopIcon;// 店铺图标
 
    @Expose
    private BigDecimal scoreGoods;// 商品评分
 
    @Expose
    private BigDecimal scoreSeller;// 卖家评分
 
    @Expose
    private BigDecimal scoreLogistics;// 物流评分
 
    @Expose
    private BigDecimal goodRatePercentage;// 好评率
    
    @Expose
    private String shopLink; // 店铺链接
    
    @Expose
    private BigDecimal scoreGoodsD;// 与行业平均分的差值
    
    @Expose
    private BigDecimal scoreSellerD;
    
    @Expose
    private BigDecimal scoreLogisticsD;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public Integer getUserType() {
        return userType;
    }
 
    public void setUserType(Integer userType) {
        this.userType = userType;
    }
 
    public String getShopName() {
        return shopName;
    }
 
    public void setShopName(String shopName) {
        this.shopName = shopName;
    }
 
    public String getShopIcon() {
        return shopIcon;
    }
 
    public void setShopIcon(String shopIcon) {
        this.shopIcon = shopIcon;
    }
 
    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 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 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 static long getSerialversionuid() {
        return serialVersionUID;
    }
}