From b0c4f3c46059d0c6310ec208b40114abceacff90 Mon Sep 17 00:00:00 2001
From: phpcjl <phpcjl@gmail.com>
Date: 星期二, 10 十二月 2024 17:19:18 +0800
Subject: [PATCH] 1.

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java |   15 +++++++--------
 1 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java
index e0574ab..2d883b2 100644
--- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java
+++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java
@@ -40,7 +40,7 @@
 
     @ApiModelProperty(value = "技师id")
     @TableField("technician_id")
-    private Long technicianId;
+    private Integer technicianId;
 
     @ApiModelProperty(value = "预约时间")
     @TableField("subscribe_time")
@@ -68,15 +68,14 @@
     @TableField("create_time")
     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
     private LocalDateTime createTime;
-
-
-    @ApiModelProperty(value = "订单id")
+    @TableField(exist = false)
+    private String idStr;
     @TableField(exist = false)
     private Long orderId;
 
-    @TableField(exist = false)
-    private String idStr;
 
-
-
+    public void setId(Long id) {
+        this.id = id;
+        this.idStr = String.valueOf(id);
+    }
 }

--
Gitblit v1.7.1