From de91c84954157bb9f8b6d938cbe0b1b51fb6e65d Mon Sep 17 00:00:00 2001 From: CeDo <cedoogle@gmail.com> Date: 星期五, 07 五月 2021 15:23:57 +0800 Subject: [PATCH] bugfixed:新增便民服务商家 报错 --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopGoodsDO.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopGoodsDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopGoodsDO.java index 49eb9c4..2fcd17a 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopGoodsDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComShopGoodsDO.java @@ -126,6 +126,31 @@ @TableField(fill = FieldFill.UPDATE) private Date updateAt; + /** + * 商品状态(1.出售中 2.已下架 3.回收站) + */ + public interface status{ + int sell = 1; + int lower = 2; + int recovery = 3; + } + + /** + * 删除状态(1.未删除 2.已删除) + */ + public interface deleteStatus{ + int no = 1; + int yes = 2; + } + + /** + * 配送方式(1.商家配送 2.快递物流) + */ + public interface deliveryType{ + int store = 1; + int express = 2; + } + @Override public String toString() { return "ComShopGoodsDO{" + -- Gitblit v1.7.1