package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Created by weikou2015 on 2018/7/3.
|
*/
|
|
public class BranShopInfo implements Serializable {
|
|
@Expose
|
private String id;// 店铺id
|
@Expose
|
private String name;// 店铺名称
|
@Expose
|
private String icon;// 店铺图标
|
@Expose
|
private String shopLink;// 店铺链接
|
@Expose
|
private int userType;// 店铺类型 10-淘宝 11-天猫 20-京东 30-拼多多
|
@Expose
|
private List<TaoBaoGoodsBrief> listGoods;// 描述相符
|
@Expose
|
private String scoreGoods;// 描述相符
|
@Expose
|
private String scoreLogistics;// 物流评分
|
@Expose
|
private String scoreSeller;// 服务态度评分
|
@Expose
|
private String goodRatePercentage;//店铺好评率
|
@Expose
|
private int scoreGoodsD;//店铺好评率
|
@Expose
|
private int scoreSellerD;//店铺好评率
|
@Expose
|
private int scoreLogisticsD;//店铺好评率
|
|
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 String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getShopLink() {
|
return shopLink;
|
}
|
|
public void setShopLink(String shopLink) {
|
this.shopLink = shopLink;
|
}
|
|
public int getUserType() {
|
return userType;
|
}
|
|
public void setUserType(int userType) {
|
this.userType = userType;
|
}
|
|
public List<TaoBaoGoodsBrief> getListGoods() {
|
return listGoods;
|
}
|
|
public void setListGoods(List<TaoBaoGoodsBrief> listGoods) {
|
this.listGoods = listGoods;
|
}
|
|
public String getScoreGoods() {
|
return scoreGoods;
|
}
|
|
public void setScoreGoods(String scoreGoods) {
|
this.scoreGoods = scoreGoods;
|
}
|
|
public String getScoreLogistics() {
|
return scoreLogistics;
|
}
|
|
public void setScoreLogistics(String scoreLogistics) {
|
this.scoreLogistics = scoreLogistics;
|
}
|
|
public String getScoreSeller() {
|
return scoreSeller;
|
}
|
|
public void setScoreSeller(String scoreSeller) {
|
this.scoreSeller = scoreSeller;
|
}
|
|
public String getGoodRatePercentage() {
|
return goodRatePercentage;
|
}
|
|
public void setGoodRatePercentage(String goodRatePercentage) {
|
this.goodRatePercentage = goodRatePercentage;
|
}
|
|
public int getScoreGoodsD() {
|
return scoreGoodsD;
|
}
|
|
public void setScoreGoodsD(int scoreGoodsD) {
|
this.scoreGoodsD = scoreGoodsD;
|
}
|
|
public int getScoreSellerD() {
|
return scoreSellerD;
|
}
|
|
public void setScoreSellerD(int scoreSellerD) {
|
this.scoreSellerD = scoreSellerD;
|
}
|
|
public int getScoreLogisticsD() {
|
return scoreLogisticsD;
|
}
|
|
public void setScoreLogisticsD(int scoreLogisticsD) {
|
this.scoreLogisticsD = scoreLogisticsD;
|
}
|
}
|