package com.yeshi.fanli.vo.goods;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import java.util.List;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.fanli.vo.msg.ClientTextStyleVO;
|
|
|
/**
|
* 商品详细信息
|
*
|
* @author Administrator
|
*
|
*/
|
public class GoodsDetailVO implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
@Expose
|
private Long id;// 系统ID
|
@Expose
|
private Long goodsId;// 商品ID
|
@Expose
|
private int goodsType;// 商品类型 1-淘宝 2-京东 3-拼多多
|
@Expose
|
private int shopType;// 店铺类型: 1-淘宝 2-天猫 3-京东 4-拼多多
|
@Expose
|
private String title;// 标题
|
@Expose
|
private String salesCount;// 销量
|
@Expose
|
private BigDecimal zkPrice;// 正常售价
|
@Expose
|
private BigDecimal couponPrice;// 券后价
|
@Expose
|
private String priceName;// 价格名称
|
@Expose
|
private String picUrl;// 图片链接
|
@Expose
|
private List<String> imgList;
|
@Expose
|
private int state; // 0-正常 1-商品下架
|
@Expose
|
private boolean hasCoupon;// 是否有券
|
@Expose
|
private CouponInfoVO couponInfo;// 券信息
|
@Expose
|
private ShopInfoVO shopInfo; // 店铺信息
|
@Expose
|
private MoneyInfoVO moneyInfo;// 资金信息
|
@Expose
|
private boolean recommend;// 是否推荐 :是否展示右上角叉)true-展示 false-不展示
|
@Expose
|
private ClientTextStyleVO pictureTag;// 图标
|
@Expose
|
private List<ClientTextStyleVO> labels;// 标签
|
@Expose
|
private int salesType; // 销量类型:1-月销量 2-2小时销量 3-今日销量 4、总销量
|
@Expose
|
private Date createtime; // 创建时间
|
@Expose
|
private OtherInfo otherInfo; // 其他信息
|
|
public Long getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(Long goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public int getGoodsType() {
|
return goodsType;
|
}
|
|
public void setGoodsType(int goodsType) {
|
this.goodsType = goodsType;
|
}
|
|
public int getShopType() {
|
return shopType;
|
}
|
|
public void setShopType(int shopType) {
|
this.shopType = shopType;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public String getSalesCount() {
|
return salesCount;
|
}
|
|
public void setSalesCount(String salesCount) {
|
this.salesCount = salesCount;
|
}
|
|
public BigDecimal getZkPrice() {
|
return zkPrice;
|
}
|
|
public void setZkPrice(BigDecimal zkPrice) {
|
this.zkPrice = zkPrice;
|
}
|
|
public BigDecimal getCouponPrice() {
|
return couponPrice;
|
}
|
|
public void setCouponPrice(BigDecimal couponPrice) {
|
this.couponPrice = couponPrice;
|
}
|
|
public String getPicUrl() {
|
return picUrl;
|
}
|
|
public void setPicUrl(String picUrl) {
|
this.picUrl = picUrl;
|
}
|
|
public List<String> getImgList() {
|
return imgList;
|
}
|
|
public void setImgList(List<String> imgList) {
|
this.imgList = imgList;
|
}
|
|
public int getState() {
|
return state;
|
}
|
|
public void setState(int state) {
|
this.state = state;
|
}
|
|
public boolean isHasCoupon() {
|
return hasCoupon;
|
}
|
|
public void setHasCoupon(boolean hasCoupon) {
|
this.hasCoupon = hasCoupon;
|
}
|
|
public CouponInfoVO getCouponInfo() {
|
return couponInfo;
|
}
|
|
public void setCouponInfo(CouponInfoVO couponInfo) {
|
this.couponInfo = couponInfo;
|
}
|
|
public ShopInfoVO getShopInfo() {
|
return shopInfo;
|
}
|
|
public void setShopInfo(ShopInfoVO shopInfo) {
|
this.shopInfo = shopInfo;
|
}
|
|
public MoneyInfoVO getMoneyInfo() {
|
return moneyInfo;
|
}
|
|
public void setMoneyInfo(MoneyInfoVO moneyInfo) {
|
this.moneyInfo = moneyInfo;
|
}
|
|
public ClientTextStyleVO getPictureTag() {
|
return pictureTag;
|
}
|
|
public void setPictureTag(ClientTextStyleVO pictureTag) {
|
this.pictureTag = pictureTag;
|
}
|
|
public List<ClientTextStyleVO> getLabels() {
|
return labels;
|
}
|
|
public void setLabels(List<ClientTextStyleVO> labels) {
|
this.labels = labels;
|
}
|
|
public int getSalesType() {
|
return salesType;
|
}
|
|
public void setSalesType(int salesType) {
|
this.salesType = salesType;
|
}
|
|
public OtherInfo getOtherInfo() {
|
return otherInfo;
|
}
|
|
public void setOtherInfo(OtherInfo otherInfo) {
|
this.otherInfo = otherInfo;
|
}
|
|
public boolean isRecommend() {
|
return recommend;
|
}
|
|
public void setRecommend(boolean recommend) {
|
this.recommend = recommend;
|
}
|
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getPriceName() {
|
return priceName;
|
}
|
|
public void setPriceName(String priceName) {
|
this.priceName = priceName;
|
}
|
}
|