From d7a8baeff8b0e68c54a959e5f46f639c54aad1d1 Mon Sep 17 00:00:00 2001 From: 罗元桥 <2376770955@qq.com> Date: 星期一, 27 九月 2021 17:15:29 +0800 Subject: [PATCH] Merge branch 'test_bak' into 'master' --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseDO.java | 48 ++++++++++++++++++++++++++++-------------------- 1 files changed, 28 insertions(+), 20 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseDO.java index 457657a..79dd400 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseDO.java @@ -1,11 +1,12 @@ package com.panzhihua.service_community.model.dos; -import com.baomidou.mybatisplus.annotation.*; -import lombok.Data; - import java.io.Serializable; +import java.math.BigDecimal; import java.util.Date; +import com.baomidou.mybatisplus.annotation.*; + +import lombok.Data; /** * @auther lyq @@ -22,7 +23,7 @@ /** * 主键id */ - @TableId(type = IdType.AUTO) + @TableId(type = IdType.INPUT) private Long id; /** @@ -91,7 +92,7 @@ /** * 建筑面积 */ - private Integer constructArea; + private BigDecimal constructArea; /** * 创建时间 @@ -105,22 +106,29 @@ @TableField(fill = FieldFill.UPDATE) private Date updateAt; + /** + * 小区id + */ + private Long villageId; + + /** + * 街道id + * + * @return + */ + private Long streetId; + + /** + * 层次递归字段(省>市>区县>街道>社区>小区>详细地址) + */ + private String path; + @Override public String toString() { - return "ComMngPopulationHouseDO{" + - "id=" + id + - ", address=" + address + - ", code=" + code + - ", alley=" + alley + - ", houseNum=" + houseNum + - ", status=" + status + - ", purpose=" + purpose + - ", controlStatus=" + controlStatus + - ", isEmpty=" + isEmpty + - ", constructPurpose=" + constructPurpose + - ", constructArea=" + constructArea + - ", createAt=" + createAt + - ", updateAt=" + updateAt + - "}"; + return "ComMngPopulationHouseDO{" + "id=" + id + ", streetId=" + streetId + ", address=" + address + ", code=" + + code + ", alley=" + alley + ", houseNum=" + houseNum + ", status=" + status + ", purpose=" + purpose + + ", controlStatus=" + controlStatus + ", isEmpty=" + isEmpty + ", constructPurpose=" + constructPurpose + + ", constructArea=" + constructArea + ", path=" + path + ", createAt=" + createAt + ", updateAt=" + + updateAt + "}"; } } \ No newline at end of file -- Gitblit v1.7.1