From 554de444b87aab5f93cb1593a8095612cf9479a7 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期二, 09 六月 2020 17:34:30 +0800 Subject: [PATCH] 订单 --- fanli/src/main/java/com/yeshi/fanli/entity/goods/CommonGoods.java | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/goods/CommonGoods.java b/fanli/src/main/java/com/yeshi/fanli/entity/goods/CommonGoods.java index 58c0a34..88de016 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/goods/CommonGoods.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/goods/CommonGoods.java @@ -10,9 +10,20 @@ 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 GOODS_TYPE_VIP = 4;// 鍞搧浼� + public static int GOODS_TYPE_SUNING = 5;// 鑻忓畞 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 SHOP_TYPE_VIP = 40;//鍞搧浼氳嚜钀� + + public static int SHOP_TYPE_SUNING = 50;//鑻忓畞 + public static int SHOP_TYPE_SUNING_SELF = 51;//鑻忓畞鑷惀 + public static int STATE_NORMAL = 0;// 姝e父 public static int STATE_OFFLINE = 1;// 涓嬬嚎 @@ -59,6 +70,11 @@ 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_category_info") + private String categoryInfo; // 鍟嗗搧鍒嗙被淇℃伅 + @Column(name = "cg_createtime") private Date createTime; @Column(name = "cg_updatetime") @@ -254,4 +270,21 @@ public void setPictureWhite(String pictureWhite) { this.pictureWhite = pictureWhite; } + + public String getOtherInfo() { + return otherInfo; + } + + public void setOtherInfo(String otherInfo) { + this.otherInfo = otherInfo; + } + + public String getCategoryInfo() { + return categoryInfo; + } + + public void setCategoryInfo(String categoryInfo) { + this.categoryInfo = categoryInfo; + } + } -- Gitblit v1.8.0