admin
2021-05-17 06a80d5c4b3a971cdc1ca3d91717ec3f6e03a443
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
package com.tejia.lijin.app.ui.BrandRebate;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
/**
 * 店铺足迹
 */
public class History implements Serializable {
    @Expose
    private Long id;
    @Expose
    private int userType;
    @Expose
    private Long shopId;
//    @Expose
//    private String shopName;
//    @Expose
//    private String shopIcon;
    @Expose
    private String name;
    @Expose
    private String icon;
    @Expose
    private String scoreGoods;
    @Expose
    private String scoreSeller;
    @Expose
    private String scoreLogistics;
    @Expose
    private String scoreGoodsD;
    @Expose
    private String goodRatePercentage;
    @Expose
    private String shopLink;
    @Expose
    private boolean selected;//是否选中
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getIcon() {
        return icon;
    }
 
    public void setIcon(String icon) {
        this.icon = icon;
    }
 
    public boolean getSelected() {
        return selected;
    }
 
    public void setSelected(boolean selected) {
        this.selected = selected;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getId() {
        return this.id;
    }
 
    public void setUserType(int userType) {
        this.userType = userType;
    }
 
    public int getUserType() {
        return this.userType;
    }
 
    public void setShopId(Long shopId) {
        this.shopId = shopId;
    }
 
    public Long getShopId() {
        return this.shopId;
    }
 
//    public void setShopName(String shopName) {
//        this.shopName = shopName;
//    }
//
//    public String getShopName() {
//        return this.shopName;
//    }
//
//    public void setShopIcon(String shopIcon) {
//        this.shopIcon = shopIcon;
//    }
//
//    public String getShopIcon() {
//        return this.shopIcon;
//    }
 
    public void setScoreGoods(String scoreGoods) {
        this.scoreGoods = scoreGoods;
    }
 
    public String getScoreGoods() {
        return this.scoreGoods;
    }
 
    public void setScoreSeller(String scoreSeller) {
        this.scoreSeller = scoreSeller;
    }
 
    public String getScoreSeller() {
        return this.scoreSeller;
    }
 
    public void setScoreLogistics(String scoreLogistics) {
        this.scoreLogistics = scoreLogistics;
    }
 
    public String getScoreLogistics() {
        return this.scoreLogistics;
    }
 
    public void setScoreGoodsD(String scoreGoodsD) {
        this.scoreGoodsD = scoreGoodsD;
    }
 
    public String getScoreGoodsD() {
        return this.scoreGoodsD;
    }
 
    public void setGoodRatePercentage(String goodRatePercentage) {
        this.goodRatePercentage = goodRatePercentage;
    }
 
    public String getGoodRatePercentage() {
        return this.goodRatePercentage;
    }
 
    public void setShopLink(String shopLink) {
        this.shopLink = shopLink;
    }
 
    public String getShopLink() {
        return this.shopLink;
    }
}