yujian
2020-01-18 f4a0f2acc63d7785eab108419a4e16f5f688cb95
fanli/src/main/java/com/yeshi/fanli/entity/goods/CommonGoods.java
@@ -10,9 +10,13 @@
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;// 下线
@@ -59,6 +63,8 @@
   private String videoUrl;
   @Column(name = "cg_material_lib_type")
   private Integer materialLibType;// 物料库类型 1-营销商品库 0-非营销商品库
   @Column(name = "cg_other_info")
   private String otherInfo; // 商品其他信息-json字符串
   @Column(name = "cg_createtime")
   private Date createTime;
   @Column(name = "cg_updatetime")
@@ -254,4 +260,13 @@
   public void setPictureWhite(String pictureWhite) {
      this.pictureWhite = pictureWhite;
   }
   public String getOtherInfo() {
      return otherInfo;
   }
   public void setOtherInfo(String otherInfo) {
      this.otherInfo = otherInfo;
   }
}