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; // 店铺链接
|
|
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;
|
}
|
|
}
|