From acb1b57cdf0f160b802f31c4f41b4daf4d2e9ce6 Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期四, 19 十二月 2024 10:30:08 +0800
Subject: [PATCH] 合并代码

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java |   18 ++++++++++++++++--
 1 files changed, 16 insertions(+), 2 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java
index 5f2772f..45e60a1 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Goods.java
@@ -47,9 +47,9 @@
     @TableField("purchase_limit")
     private Integer purchaseLimit;
 
-    @ApiModelProperty(value = "配送方式(1=自提,2=快递)")
+    @ApiModelProperty(value = "配送方式(1=自提,2=快递,1,2 = 自提+快递)")
     @TableField("distribution_mode")
-    private Integer distributionMode;
+    private String distributionMode;
 
     @ApiModelProperty(value = "指定门店(1=指定,2=所有)")
     @TableField("appoint_store")
@@ -124,16 +124,30 @@
     private Integer vipId;
 
     @TableField(exist = false)
+    @ApiModelProperty(value = "指定门店")
     private List<GoodsShop> goodsShopList;
 
     @TableField(exist = false)
+    @ApiModelProperty(value = "指定用户")
     private List<GoodsAppUser> goodsAppUserList;
 
     @TableField(exist = false)
+    @ApiModelProperty(value = "会员价格")
     private List<GoodsVip> goodsVipList;
 
     @TableField(exist = false)
+    @ApiModelProperty(value = "地区价格")
     private List<GoodsArea> goodsAreaList;
 
+    @TableField(exist = false)
+    private String categoryName;
+
+    @TableField(exist = false)
+    private Integer showStatus;
+
+    public String getIdStr() {
+        return String.valueOf(id);
+    }
+
 
 }

--
Gitblit v1.7.1