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;
|
}
|
}
|