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/TechnicianSubscribe.java |   14 +++++++++++++-
 1 files changed, 13 insertions(+), 1 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 94a1ef0..50e6938 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,10 +40,11 @@
 
     @ApiModelProperty(value = "技师id")
     @TableField("technician_id")
-    private Long technicianId;
+    private Integer technicianId;
 
     @ApiModelProperty(value = "预约时间")
     @TableField("subscribe_time")
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
     private LocalDateTime subscribeTime;
 
     @ApiModelProperty(value = "服务方式(1=上门服务,2=到店服务)")
@@ -69,4 +70,15 @@
     private LocalDateTime createTime;
 
 
+    @ApiModelProperty(value = "订单id")
+    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