|
|
|
@ -16,13 +16,13 @@ public class NeighborHoodListResultDTO implements Serializable { |
|
|
|
private static final long serialVersionUID = -5333918463141094854L; |
|
|
|
private String id; |
|
|
|
private String name; |
|
|
|
private Integer buildingCount; |
|
|
|
private Integer houseCount; |
|
|
|
private Integer personCount; |
|
|
|
private Integer differBuildingCount; |
|
|
|
private Integer differHouseCount; |
|
|
|
private Integer differPersonCount; |
|
|
|
private Integer buildingRealCount; |
|
|
|
private Integer houseRealCount; |
|
|
|
private Integer personRealCount; |
|
|
|
private Integer buildingCount = 0; |
|
|
|
private Integer houseCount = 0; |
|
|
|
private Integer personCount = 0; |
|
|
|
private Integer differBuildingCount = 0; |
|
|
|
private Integer differHouseCount = 0; |
|
|
|
private Integer differPersonCount = 0; |
|
|
|
private Integer buildingRealCount = 0; |
|
|
|
private Integer houseRealCount = 0; |
|
|
|
private Integer personRealCount = 0; |
|
|
|
} |
|
|
|
|