From f4a0f2acc63d7785eab108419a4e16f5f688cb95 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期六, 18 一月 2020 12:06:27 +0800 Subject: [PATCH] 用户注册信息 --- fanli/src/main/java/com/yeshi/fanli/entity/goods/CommonGoods.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 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 dc1ae7f..ef39fe8 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,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;// 姝e父 public static int STATE_OFFLINE = 1;// 涓嬬嚎 @@ -57,6 +61,10 @@ 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_other_info") + private String otherInfo; // 鍟嗗搧鍏朵粬淇℃伅-json瀛楃涓� @Column(name = "cg_createtime") private Date createTime; @Column(name = "cg_updatetime") @@ -91,6 +99,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() { @@ -244,4 +260,13 @@ public void setPictureWhite(String pictureWhite) { this.pictureWhite = pictureWhite; } + + public String getOtherInfo() { + return otherInfo; + } + + public void setOtherInfo(String otherInfo) { + this.otherInfo = otherInfo; + } + } -- Gitblit v1.8.0