package com.yeshi.fanli.dto.pdd;
|
|
import java.io.Serializable;
|
|
import com.google.gson.annotations.SerializedName;
|
|
public class PDDShopDetail implements Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
|
@SerializedName("mall_id")
|
private Long mallId;// 店铺id
|
|
@SerializedName("mall_name")
|
private String mallName;// 店铺名称
|
|
@SerializedName("img_url")
|
private String imgUrl;// 店铺logo
|
|
@SerializedName("merchant_type")
|
private Integer merchanType;// 店铺类型,1-个人,2-企业,3-旗舰店,4-专卖店,5-专营店,6-普通店
|
|
@SerializedName("sales_tip")
|
private String salesTip;// 销量
|
|
@SerializedName("serv_txt")
|
private String servTxt; // 服务评分
|
|
@SerializedName("lgst_txt")
|
private String lgstTxt; // 物流评分
|
|
@SerializedName("desc_txt")
|
private String descTxt; // 描述评分
|
|
@SerializedName("mallRate")
|
private Integer mallRate;// 全店推广佣金
|
|
@SerializedName("goods_num")
|
private Integer goodsNum;// 商品数
|
|
public Long getMallId() {
|
return mallId;
|
}
|
|
public void setMallId(Long mallId) {
|
this.mallId = mallId;
|
}
|
|
public String getMallName() {
|
return mallName;
|
}
|
|
public void setMallName(String mallName) {
|
this.mallName = mallName;
|
}
|
|
public String getImgUrl() {
|
return imgUrl;
|
}
|
|
public void setImgUrl(String imgUrl) {
|
this.imgUrl = imgUrl;
|
}
|
|
public Integer getMerchanType() {
|
return merchanType;
|
}
|
|
public void setMerchanType(Integer merchanType) {
|
this.merchanType = merchanType;
|
}
|
|
public String getSalesTip() {
|
return salesTip;
|
}
|
|
public void setSalesTip(String salesTip) {
|
this.salesTip = salesTip;
|
}
|
|
public String getServTxt() {
|
return servTxt;
|
}
|
|
public void setServTxt(String servTxt) {
|
this.servTxt = servTxt;
|
}
|
|
public String getLgstTxt() {
|
return lgstTxt;
|
}
|
|
public void setLgstTxt(String lgstTxt) {
|
this.lgstTxt = lgstTxt;
|
}
|
|
public String getDescTxt() {
|
return descTxt;
|
}
|
|
public void setDescTxt(String descTxt) {
|
this.descTxt = descTxt;
|
}
|
|
public Integer getMallRate() {
|
return mallRate;
|
}
|
|
public void setMallRate(Integer mallRate) {
|
this.mallRate = mallRate;
|
}
|
|
public Integer getGoodsNum() {
|
return goodsNum;
|
}
|
|
public void setGoodsNum(Integer goodsNum) {
|
this.goodsNum = goodsNum;
|
}
|
|
}
|