From a40ad9a47d99b40282ea6becb8cae78829a25e70 Mon Sep 17 00:00:00 2001 From: phpcjl <phpcjl@gmail.com> Date: 星期四, 05 十二月 2024 11:55:52 +0800 Subject: [PATCH] 1.完成开发门店打分接口 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java | 12 ++---------- 1 files changed, 2 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 b44742a..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") @@ -153,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