| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | |
| | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.INPUT) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 建筑面积 |
| | | */ |
| | | private Integer constructArea; |
| | | private BigDecimal constructArea; |
| | | |
| | | /** |
| | | * 创建时间 |
| | |
| | | @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 + |
| | | ", streetId="+streetId+ |
| | | ", address=" + address + |
| | | ", code=" + code + |
| | | ", alley=" + alley + |
| | |
| | | ", isEmpty=" + isEmpty + |
| | | ", constructPurpose=" + constructPurpose + |
| | | ", constructArea=" + constructArea + |
| | | ", path="+path+ |
| | | ", createAt=" + createAt + |
| | | ", updateAt=" + updateAt + |
| | | "}"; |