From 0c5defb96c450261e19d4fdbb14979a7b5c92d77 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期三, 06 三月 2024 17:01:47 +0800 Subject: [PATCH] 添加方法 --- cloud-server-other/src/main/java/com/dsh/other/entity/Site.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/cloud-server-other/src/main/java/com/dsh/other/entity/Site.java b/cloud-server-other/src/main/java/com/dsh/other/entity/Site.java index 019016c..ec100db 100644 --- a/cloud-server-other/src/main/java/com/dsh/other/entity/Site.java +++ b/cloud-server-other/src/main/java/com/dsh/other/entity/Site.java @@ -19,7 +19,7 @@ /** * 主键 */ - @TableId(value = "id", type = IdType.AUTO) + @TableId(value = "id", type = IdType.INPUT) private Integer id; /** * 门店id @@ -62,6 +62,11 @@ @TableField("cityCode") private String cityCode; /** + * 是否可预约(0=否,1=是) + */ + @TableField("isCanBeBooked") + private Integer isCanBeBooked; + /** * 预约开始时间 */ @TableField("appointmentStartTime") -- Gitblit v1.7.1