From ce7f72ff0a44cb6e980b05a538a0339439248b99 Mon Sep 17 00:00:00 2001 From: luodangjia <luodangjia> Date: 星期二, 17 十二月 2024 16:03:46 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsShop.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 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 c4dfa02..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 @@ -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