From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001
From: mitao <2763622819@qq.com>
Date: 星期二, 20 五月 2025 23:48:08 +0800
Subject: [PATCH] 修改文件上传类型限制

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseUserDO.java |   45 ++++++++++++++++++++++++++-------------------
 1 files changed, 26 insertions(+), 19 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseUserDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseUserDO.java
index 5b8f3fc..2f5fd77 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseUserDO.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseUserDO.java
@@ -1,12 +1,11 @@
 package com.panzhihua.service_community.model.dos;
 
-import com.baomidou.mybatisplus.annotation.*;
-import com.fasterxml.jackson.annotation.JsonFormat;
-import lombok.Data;
-
 import java.io.Serializable;
 import java.util.Date;
 
+import com.baomidou.mybatisplus.annotation.*;
+
+import lombok.Data;
 
 /**
  * @auther lyq
@@ -23,7 +22,7 @@
     /**
      * 主键id
      */
-    @TableId(type = IdType.INPUT)
+    @TableId(type = IdType.ASSIGN_ID)
     private Long id;
 
     /**
@@ -42,9 +41,14 @@
     private Integer relation;
 
     /**
-     * 人和房屋关系’ (1.自住2、租住)
+     * 人和房屋关系’ (1.自住2、租住) 该字段类型改为(1.业主 2.业主家属 3.租户)
      */
     private Integer relationId;
+
+    /**
+     * 人和房屋关系’ (1.是、0.否)
+     */
+    private Integer residence;
 
     /**
      * 入住开始时间
@@ -63,9 +67,21 @@
     private Date createAt;
 
     /**
+     * 更改时间
+     */
+    @TableField(fill = FieldFill.UPDATE)
+    private Date updateAt;
+
+    @Override
+    public String toString() {
+        return "ComMngPopulationHouseUserDO{" + "id=" + id + ", populId=" + populId + ", houseId=" + houseId
+            + ", createAt=" + createAt + ", updateAt=" + updateAt + "}";
+    }
+
+    /**
      * 与户主关系(1.户主 2.配偶 3.子女 4.孙女 5.父母 6.其他)
      */
-    public interface relation{
+    public interface relation {
         int hz = 1;
         int po = 2;
         int zn = 3;
@@ -75,20 +91,11 @@
     }
 
     /**
-     * 人和房屋关系’ (1.自住2、租住)
+     * 人和房屋关系’ (1.自住2、租住) 该字段类型改为(1.业主 2.业主家属 3.租户)
      */
-    public interface relationId{
+    public interface relationId {
         int zizhu = 1;
         int zuzhu = 2;
-    }
-
-    @Override
-    public String toString() {
-        return "ComMngPopulationHouseUserDO{" +
-                "id=" + id +
-                ", populId=" + populId +
-                ", houseId=" + houseId +
-                ", createAt=" + createAt +
-                "}";
+        int zuhu = 3;
     }
 }
\ No newline at end of file

--
Gitblit v1.7.1