package com.tejia.lijin.app.entity;
|
|
import com.google.gson.annotations.Expose;
|
import com.google.gson.annotations.SerializedName;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Created by weikou2015 on 2017/3/8.
|
*/
|
|
public class TaoBaoGoodsBrief implements Serializable {
|
@Expose
|
private String id;// 简版商品id
|
@Expose
|
private String goodsId;// 商品id
|
@Expose
|
private int goodsType;// 商品类型 1-淘宝 2-京东 3-拼多多
|
@Expose
|
private int shopType;// 店铺类型: 10-淘宝 11-天猫 20-京东 30-拼多多
|
@Expose
|
private String picUrl;// 图片
|
@Expose
|
private String pictUrl;// 图片
|
@Expose
|
private String title;// 商品名称
|
@Expose
|
private String zkPrice;// 商品价格(原价)
|
@Expose
|
private String salesCount;// 月销量
|
@Expose
|
private int state;// 0在售 1下架
|
@Expose
|
private long createtime;// 时间(收藏、足迹)
|
@Expose
|
private List<String> imgList;// 商品图片列表
|
@Expose
|
private ShopInfo shopInfo;// 店铺信息
|
@Expose
|
private boolean hasCoupon;// 是否有券
|
@Expose
|
private String couponPrice;// 券后价
|
@Expose
|
private CouponInfo couponInfo;//券信息
|
@Expose
|
private List<CouponInfo> couponInfoList;//券列表
|
@Expose
|
private RedPacket moneyInfo; // 红包金额
|
@Expose
|
private TextColor pictureTag;// 首页top3
|
@Expose
|
List<Label> labels;// 标签
|
@Expose
|
private int salesType;// 销量类型:1-月销量 2-2小时销量 3-今日销量 4、总销量
|
@Expose
|
private boolean recommend;// // 是否推荐 :是否展示右上角叉)true-展示 false-不展示
|
@Expose
|
private GoodsOtherInfo otherInfo; // 推广红包和 自购立减
|
@Expose
|
private String priceName;// 价格名称 天猫价、京东价、拼团价
|
@Expose
|
private boolean baoyou;// 价格名称 天猫价、京东价、拼团价
|
|
@SerializedName("provcity")
|
@Expose
|
private String provCity;
|
|
@Expose
|
private String description;//推荐语
|
|
@Expose
|
private String discount;//折扣信息
|
|
public String getDiscount() {
|
return discount;
|
}
|
|
public void setDiscount(String discount) {
|
this.discount = discount;
|
}
|
|
|
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getProvCity() {
|
return provCity;
|
}
|
|
public void setProvCity(String provCity) {
|
this.provCity = provCity;
|
}
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(String goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public int getGoodsType() {
|
return goodsType;
|
}
|
|
public int getShopType() {
|
return shopType;
|
}
|
|
public String getPicUrl() {
|
return picUrl;
|
}
|
|
public void setPicUrl(String picUrl) {
|
this.picUrl = picUrl;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getZkPrice() {
|
return zkPrice;
|
}
|
|
public void setZkPrice(String zkPrice) {
|
this.zkPrice = zkPrice;
|
}
|
|
public String getSalesCount() {
|
return salesCount;
|
}
|
|
public void setSalesCount(String salesCount) {
|
this.salesCount = salesCount;
|
}
|
|
public void setGoodsType(int goodsType) {
|
this.goodsType = goodsType;
|
}
|
|
public void setShopType(int shopType) {
|
this.shopType = shopType;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public long getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(long createtime) {
|
this.createtime = createtime;
|
}
|
|
public List<String> getImgList() {
|
return imgList;
|
}
|
|
public void setImgList(List<String> imgList) {
|
this.imgList = imgList;
|
}
|
|
public ShopInfo getShopInfo() {
|
return shopInfo;
|
}
|
|
public void setShopInfo(ShopInfo shopInfo) {
|
this.shopInfo = shopInfo;
|
}
|
|
public boolean isHasCoupon() {
|
return hasCoupon;
|
}
|
|
public void setHasCoupon(boolean hasCoupon) {
|
this.hasCoupon = hasCoupon;
|
}
|
|
public String getCouponPrice() {
|
return couponPrice;
|
}
|
|
public void setCouponPrice(String couponPrice) {
|
this.couponPrice = couponPrice;
|
}
|
|
public CouponInfo getCouponInfo() {
|
return couponInfo;
|
}
|
|
public void setCouponInfo(CouponInfo couponInfo) {
|
this.couponInfo = couponInfo;
|
}
|
|
public RedPacket getMoneyInfo() {
|
return moneyInfo;
|
}
|
|
public void setMoneyInfo(RedPacket moneyInfo) {
|
this.moneyInfo = moneyInfo;
|
}
|
|
public TextColor getPictureTag() {
|
return pictureTag;
|
}
|
|
public void setPictureTag(TextColor pictureTag) {
|
this.pictureTag = pictureTag;
|
}
|
|
public List<Label> getLabels() {
|
return labels;
|
}
|
|
public void setLabels(List<Label> labels) {
|
this.labels = labels;
|
}
|
|
public int getSalesType() {
|
return salesType;
|
}
|
|
public void setSalesType(int salesType) {
|
this.salesType = salesType;
|
}
|
|
public boolean isRecommend() {
|
return recommend;
|
}
|
|
public void setRecommend(boolean recommend) {
|
this.recommend = recommend;
|
}
|
|
public GoodsOtherInfo getOtherInfo() {
|
return otherInfo;
|
}
|
|
public void setOtherInfo(GoodsOtherInfo otherInfo) {
|
this.otherInfo = otherInfo;
|
}
|
|
public String getPriceName() {
|
return priceName;
|
}
|
|
public void setPriceName(String priceName) {
|
this.priceName = priceName;
|
}
|
|
public boolean isBaoyou() {
|
return baoyou;
|
}
|
|
public void setBaoyou(boolean baoyou) {
|
this.baoyou = baoyou;
|
}
|
|
public String getPictUrl() {
|
return pictUrl;
|
}
|
|
public void setPictUrl(String pictUrl) {
|
this.pictUrl = pictUrl;
|
}
|
|
|
public List<CouponInfo> getCouponInfoList() {
|
return couponInfoList;
|
}
|
|
public void setCouponInfoList(List<CouponInfo> couponInfoList) {
|
this.couponInfoList = couponInfoList;
|
}
|
|
}
|