From d7b3c61e01aadf99ce6a1d8ebf18c4e6dd81cc2b Mon Sep 17 00:00:00 2001
From: luodangjia <luodangjia>
Date: 星期四, 12 十二月 2024 18:05:34 +0800
Subject: [PATCH] 12.12

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java |   20 ++++++++++----------
 1 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
index 62d0f17..788932a 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java
@@ -38,9 +38,9 @@
     @TableField("pid")
     private Integer pid;
 
-    @ApiModelProperty(value = "营业星期(1,2,3,4,5,6,7)")
+    @ApiModelProperty(value = "营业星期:1-周一到周日 2-周一周五 3-仅周末")
     @TableField("business_date")
-    private String businessDate;
+    private Integer businessDate;
 
     @ApiModelProperty(value = "开始时间(HH:mm)")
     @TableField("start_time")
@@ -49,6 +49,14 @@
     @ApiModelProperty(value = "结束时间(HH:mm)")
     @TableField("end_time")
     private String endTime;
+
+    @ApiModelProperty(value = "封面图片")
+    @TableField("home_picture")
+    private String homePicture;
+
+    @ApiModelProperty(value = "详情图,多个逗号分隔")
+    @TableField("details_picture")
+    private String detailsPicture;
 
     @ApiModelProperty(value = "店长姓名")
     @TableField("shop_manager")
@@ -145,14 +153,6 @@
     @ApiModelProperty(value = "单品自提订单数")
     @TableField("custom_order_number")
     private Integer customOrderNumber;
-
-    @ApiModelProperty(value = "总评分")
-    @TableField("score")
-    private Integer score;
-
-    @ApiModelProperty(value = "评分数量")
-    @TableField("score_number")
-    private Integer scoreNumber;
 
     @ApiModelProperty(value = "删除(0=否,1=是)")
     @TableField("del_flag")

--
Gitblit v1.7.1