admin
2019-07-11 3824cbcaec6e6c67418d5280a53e9c2fedeef6f9
fanli/src/main/java/com/yeshi/fanli/entity/goods/CommonGoods.java
@@ -10,6 +10,7 @@
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;// 天猫
@@ -37,6 +38,8 @@
   private BigDecimal rate;
   @Column(name = "cg_picture")
   private String picture;
   @Column(name = "cg_picture_white")
   private String pictureWhite;
   @Column(name = "cg_state")
   private Integer state;
   @Column(name = "cg_price")
@@ -55,17 +58,20 @@
   private String videoCover;
   @Column(name = "cg_video_url")
   private String videoUrl;
   @Column(name = "cg_material_lib_type")
   private Integer materialLibType;// 物料库类型 1-营销商品库 0-非营销商品库
   @Column(name = "cg_createtime")
   private Date createTime;
   @Column(name = "cg_updatetime")
   private Date updateTime;
   public CommonGoods() {}
   public CommonGoods() {
   }
   public CommonGoods(Long id) {
      this.id = id;
   }
   public Long getId() {
      return id;
   }
@@ -88,6 +94,14 @@
   public void setGoodsId(Long goodsId) {
      this.goodsId = goodsId;
   }
   public Integer getMaterialLibType() {
      return materialLibType;
   }
   public void setMaterialLibType(Integer materialLibType) {
      this.materialLibType = materialLibType;
   }
   public Integer getGoodsType() {
@@ -233,4 +247,12 @@
   public void setVideoUrl(String videoUrl) {
      this.videoUrl = videoUrl;
   }
   public String getPictureWhite() {
      return pictureWhite;
   }
   public void setPictureWhite(String pictureWhite) {
      this.pictureWhite = pictureWhite;
   }
}