From 95985b5a5bb7c5656098cc8923ed3d1d8aaa3d2b Mon Sep 17 00:00:00 2001
From: yupeng <roc__yu@163.com>
Date: 星期五, 24 一月 2025 10:44:59 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master' into xizang-changyun

---
 ruoyi-system/src/main/java/com/ruoyi/system/model/TTenant.java |   20 +++++---------------
 1 files changed, 5 insertions(+), 15 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/model/TTenant.java b/ruoyi-system/src/main/java/com/ruoyi/system/model/TTenant.java
index 7ec52d0..92a1d88 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/model/TTenant.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/model/TTenant.java
@@ -3,6 +3,8 @@
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableName;
 import com.baomidou.mybatisplus.annotation.TableId;
+
+import java.time.LocalDate;
 import java.time.LocalDateTime;
 import com.baomidou.mybatisplus.annotation.TableField;
 import java.io.Serializable;
@@ -43,9 +45,9 @@
 
     @ApiModelProperty(value = "入住时间")
     @NotNull(message = "入住时间不能为空")
-    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
     @TableField("checkIn_time")
-    private LocalDateTime checkinTime;
+    private LocalDate checkinTime;
 
     @ApiModelProperty(value = "租户属性")
     @TableField("tenant_attributes")
@@ -53,19 +55,7 @@
 
     @ApiModelProperty(value = "租户类型")
     @TableField("tenant_type")
-    private Integer tenantType;
-
-    @ApiModelProperty(value = "租户楼栋")
-    @TableField("tenant_building")
-    private String tenantBuilding;
-
-    @ApiModelProperty(value = "房号")
-    @TableField("room_number")
-    private String roomNumber;
-
-    @ApiModelProperty(value = "建筑面积")
-    @TableField("building_area")
-    private Integer buildingArea;
+    private String tenantType;
 
     @ApiModelProperty(value = "联系电话")
     @NotBlank(message = "联系电话不能为空")

--
Gitblit v1.7.1