From 69b28c03e98ae65e03466a6626fb0989775b9c2b Mon Sep 17 00:00:00 2001
From: luodangjia <luodangjia>
Date: 星期二, 10 十二月 2024 14:35:48 +0800
Subject: [PATCH] 12.10

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/TechnicianSubscribe.java |    6 +++---
 1 files changed, 3 insertions(+), 3 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 6e5404f..e037621 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
@@ -32,7 +32,7 @@
 
     @ApiModelProperty(value = "主键")
     @TableId("id")
-    private Long id;
+    private Integer id;
 
     @ApiModelProperty(value = "用户id")
     @TableField("app_user_id")
@@ -40,7 +40,7 @@
 
     @ApiModelProperty(value = "技师id")
     @TableField("technician_id")
-    private Long technicianId;
+    private Integer technicianId;
 
     @ApiModelProperty(value = "预约时间")
     @TableField("subscribe_time")
@@ -77,7 +77,7 @@
     private String idStr;
 
 
-    public void setId(Long id) {
+    public void setId(Integer id) {
         this.id = id;
         this.idStr = String.valueOf(id);
     }

--
Gitblit v1.7.1