From acccff9860b271d55c55dc87486f7c20b9896e6c Mon Sep 17 00:00:00 2001
From: puzhibing <393733352@qq.com>
Date: 星期一, 13 一月 2025 16:19:54 +0800
Subject: [PATCH] 修改bug

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsShop.java |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsShop.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsShop.java
index 3f30f9a..2826f5a 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsShop.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsShop.java
@@ -21,7 +21,7 @@
 @Data
 @EqualsAndHashCode(callSuper = false)
 @TableName("t_goods_shop")
-@ApiModel(value="GoodsShop对象", description="")
+@ApiModel(value="指定门店对象", description="")
 public class GoodsShop implements Serializable {
 
     private static final long serialVersionUID = 1L;
@@ -38,5 +38,25 @@
     @TableField("shop_id")
     private Integer shopId;
 
+    @ApiModelProperty(value = "门店名称")
+    @TableField(exist = false)
+    private String shopName;
+
+    @ApiModelProperty(value = "店长名称")
+    @TableField(exist = false)
+    private String ownerName;
+
+    @ApiModelProperty(value = "联系电话")
+    @TableField(exist = false)
+    private String phone;
+
+    @ApiModelProperty(value = "门店地址")
+    @TableField(exist = false)
+    private String address;
+
+    public String getIdStr(){
+        return String.valueOf(id);
+    }
+
 
 }

--
Gitblit v1.7.1