| | |
| | | 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 |
| | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.ASSIGN_ID) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | private String houseNo; |
| | | |
| | | /** |
| | | * 房屋状态(1.自住 2.租住 3.其他) |
| | | * 房屋状态(1.自住 2.租住 3.空置 4.其他) |
| | | */ |
| | | private Integer status; |
| | | |
| | |
| | | /** |
| | | * 建筑面积 |
| | | */ |
| | | 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; |
| | | |
| | | /** |
| | | * 楼层数 |
| | | */ |
| | | private Integer floorNum; |
| | | |
| | | @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 + "}"; |
| | | } |
| | | |
| | | /** |
| | | * 房屋状态(1.自住 2.租住 3.空置 4.其他) |
| | | */ |
| | | public interface status{ |
| | | int zizhu = 1; |
| | | int zuzhu = 2; |
| | | int kongzhi = 3; |
| | | int qita = 4; |
| | | } |
| | | } |