package com.yeshi.fanli.dto.taobao;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
|
public class TaoBaoShopDTO {
|
|
private Long sellerId;// 卖家ID
|
private Integer userType;// 用户类型 0-淘宝 1-天猫
|
private String shopName;// 店铺名称
|
private String shopIcon;// 店铺图标
|
private String shopLink; // 店铺链接
|
private String brandId; // 大淘客品牌Id
|
private String brandDes; // 大淘客品牌描述
|
|
private List<TaoBaoGoodsBrief> listGoods;
|
|
|
|
public Long getSellerId() {
|
return sellerId;
|
}
|
public void setSellerId(Long sellerId) {
|
this.sellerId = sellerId;
|
}
|
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 String getShopLink() {
|
return shopLink;
|
}
|
public void setShopLink(String shopLink) {
|
this.shopLink = shopLink;
|
}
|
public String getBrandId() {
|
return brandId;
|
}
|
public void setBrandId(String brandId) {
|
this.brandId = brandId;
|
}
|
public List<TaoBaoGoodsBrief> getListGoods() {
|
return listGoods;
|
}
|
public void setListGoods(List<TaoBaoGoodsBrief> listGoods) {
|
this.listGoods = listGoods;
|
}
|
public String getBrandDes() {
|
return brandDes;
|
}
|
public void setBrandDes(String brandDes) {
|
this.brandDes = brandDes;
|
}
|
|
}
|