package com.ks.lijin.pojo.DTO.taobao;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
|
public class CommonGoods {
|
public static int GOODS_TYPE_TB = 1;// 淘宝天猫
|
public static int GOODS_TYPE_JD = 2;// 京东
|
public static int GOODS_TYPE_PDD = 3;// 拼多多
|
|
public static int SHOP_TYPE_TB = 1;// 淘宝
|
public static int SHOP_TYPE_TM = 2;// 天猫
|
public static int SHOP_TYPE_JD = 20;// 京东
|
public static int SHOP_TYPE_JD_SELF = 21;// 京东自营
|
public static int SHOP_TYPE_PDD = 30;// 拼多多
|
|
public static int STATE_NORMAL = 0;// 正常
|
public static int STATE_OFFLINE = 1;// 下线
|
|
private Long id;
|
private String title;
|
private Long goodsId;// 第三方商品ID
|
private Integer goodsType;// 第三方类型
|
private Integer shopType;
|
private Long sellerId;
|
private String sellerName;
|
private Integer sales;
|
private BigDecimal rate;
|
private String picture;
|
private String pictureWhite;
|
private Integer state;
|
private BigDecimal price;
|
private String couponInfo;
|
private BigDecimal couponStartPrice;
|
private BigDecimal couponAmount;
|
private Integer couponLeftCount;
|
private Integer couponTotalCount;
|
private String videoCover;
|
private String videoUrl;
|
private Integer materialLibType;// 物料库类型 1-营销商品库 0-非营销商品库
|
private String otherInfo; // 商品其他信息-json字符串
|
|
public CommonGoods() {
|
}
|
|
public CommonGoods(Long id) {
|
this.id = id;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public Long getGoodsId() {
|
return goodsId;
|
}
|
|
public void setGoodsId(Long goodsId) {
|
this.goodsId = goodsId;
|
}
|
|
public Integer getMaterialLibType() {
|
return materialLibType;
|
}
|
|
public void setMaterialLibType(Integer materialLibType) {
|
this.materialLibType = materialLibType;
|
}
|
|
public Integer getGoodsType() {
|
return goodsType;
|
}
|
|
public void setGoodsType(Integer goodsType) {
|
this.goodsType = goodsType;
|
}
|
|
public Integer getShopType() {
|
return shopType;
|
}
|
|
public void setShopType(Integer shopType) {
|
this.shopType = shopType;
|
}
|
|
public Long getSellerId() {
|
return sellerId;
|
}
|
|
public void setSellerId(Long sellerId) {
|
this.sellerId = sellerId;
|
}
|
|
public String getSellerName() {
|
return sellerName;
|
}
|
|
public void setSellerName(String sellerName) {
|
this.sellerName = sellerName;
|
}
|
|
public Integer getSales() {
|
return sales;
|
}
|
|
public void setSales(Integer sales) {
|
this.sales = sales;
|
}
|
|
public BigDecimal getRate() {
|
return rate;
|
}
|
|
public void setRate(BigDecimal rate) {
|
this.rate = rate;
|
}
|
|
public String getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public BigDecimal getPrice() {
|
return price;
|
}
|
|
public void setPrice(BigDecimal price) {
|
this.price = price;
|
}
|
|
public String getCouponInfo() {
|
return couponInfo;
|
}
|
|
public void setCouponInfo(String couponInfo) {
|
this.couponInfo = couponInfo;
|
}
|
|
public BigDecimal getCouponStartPrice() {
|
return couponStartPrice;
|
}
|
|
public void setCouponStartPrice(BigDecimal couponStartPrice) {
|
this.couponStartPrice = couponStartPrice;
|
}
|
|
public BigDecimal getCouponAmount() {
|
return couponAmount;
|
}
|
|
public void setCouponAmount(BigDecimal couponAmount) {
|
this.couponAmount = couponAmount;
|
}
|
|
public Integer getCouponLeftCount() {
|
return couponLeftCount;
|
}
|
|
public void setCouponLeftCount(Integer couponLeftCount) {
|
this.couponLeftCount = couponLeftCount;
|
}
|
|
public Integer getCouponTotalCount() {
|
return couponTotalCount;
|
}
|
|
public void setCouponTotalCount(Integer couponTotalCount) {
|
this.couponTotalCount = couponTotalCount;
|
}
|
|
public String getVideoCover() {
|
return videoCover;
|
}
|
|
public void setVideoCover(String videoCover) {
|
this.videoCover = videoCover;
|
}
|
|
public String getVideoUrl() {
|
return videoUrl;
|
}
|
|
public void setVideoUrl(String videoUrl) {
|
this.videoUrl = videoUrl;
|
}
|
|
public String getPictureWhite() {
|
return pictureWhite;
|
}
|
|
public void setPictureWhite(String pictureWhite) {
|
this.pictureWhite = pictureWhite;
|
}
|
|
public String getOtherInfo() {
|
return otherInfo;
|
}
|
|
public void setOtherInfo(String otherInfo) {
|
this.otherInfo = otherInfo;
|
}
|
|
}
|