| | |
| | | /** |
| | | * 主键id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | @TableId(type = IdType.INPUT) |
| | | private Long 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 + |
| | | "}"; |