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/ComMngStructHouseDO.java | 17 ++++++++++++----- 1 files changed, 12 insertions(+), 5 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngStructHouseDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngStructHouseDO.java index b71dfc6..58ef0ba 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngStructHouseDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngStructHouseDO.java @@ -1,10 +1,11 @@ package com.panzhihua.service_community.model.dos; -import com.baomidou.mybatisplus.annotation.TableName; -import lombok.Data; - import java.io.Serializable; import java.util.Date; + +import com.baomidou.mybatisplus.annotation.*; + +import lombok.Data; /** * @program: springcloud_k8s_panzhihuazhihuishequ @@ -20,6 +21,7 @@ /** * id */ + @TableId(type = IdType.ASSIGN_ID) private Long id; /** @@ -38,13 +40,14 @@ private String parentCode; /** - * 地址类型 1 楼栋 2 单元 3 楼层 门牌号 + * 地址类型 1小区 2楼栋 3 单元 4楼层 5门牌号 */ - private boolean type; + private Integer type; /** * create_at */ + @TableField(fill = FieldFill.INSERT) private Date createAt; /** @@ -56,4 +59,8 @@ * 房屋面积 */ private Double square; + /** + * 状态 1 自主 2 租住 3 商用 + */ + private Integer state; } -- Gitblit v1.7.1