|
@ -14,46 +14,43 @@ import java.util.Date; |
|
|
@Data |
|
|
@Data |
|
|
public class FactUserHouseExcel { |
|
|
public class FactUserHouseExcel { |
|
|
|
|
|
|
|
|
@Excel(name = "日期") |
|
|
@Excel(name = "组织结构") |
|
|
private String dateId; |
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "组织名称") |
|
|
|
|
|
private String agencyName; |
|
|
private String agencyName; |
|
|
|
|
|
|
|
|
@Excel(name = "小区总数") |
|
|
@Excel(name = "小区数") |
|
|
private Integer neighbourhoodsCount; |
|
|
private Integer neighbourhoodsCount; |
|
|
|
|
|
|
|
|
@Excel(name = "房屋总数") |
|
|
@Excel(name = "房屋数") |
|
|
private Integer houseCount; |
|
|
private Integer houseCount; |
|
|
|
|
|
|
|
|
@Excel(name = "自住房屋总数") |
|
|
@Excel(name = "自住房屋数") |
|
|
private Integer houseSelfCount; |
|
|
private Integer houseSelfCount; |
|
|
|
|
|
|
|
|
@Excel(name = "出租房屋总数") |
|
|
@Excel(name = "出租房屋数") |
|
|
private Integer houseLeaseCount; |
|
|
private Integer houseLeaseCount; |
|
|
|
|
|
|
|
|
@Excel(name = "闲置房屋总数") |
|
|
@Excel(name = "闲置房屋数") |
|
|
private Integer houseIdleCount; |
|
|
private Integer houseIdleCount; |
|
|
|
|
|
|
|
|
@Excel(name = "居民总数") |
|
|
@Excel(name = "居民总数") |
|
|
private Integer userCount; |
|
|
private Integer userCount; |
|
|
|
|
|
|
|
|
@Excel(name = "常住居民总数") |
|
|
@Excel(name = "常住人口数") |
|
|
private Integer userResiCount; |
|
|
private Integer userResiCount; |
|
|
|
|
|
|
|
|
@Excel(name = "流动居民总数") |
|
|
@Excel(name = "流动人口数") |
|
|
private Integer userFloatCount; |
|
|
private Integer userFloatCount; |
|
|
|
|
|
|
|
|
@Excel(name = "当日新增房屋数") |
|
|
@Excel(name = "新增房屋数") |
|
|
private Integer houseIncr; |
|
|
private Integer houseIncr; |
|
|
|
|
|
|
|
|
@Excel(name = "当日修改房屋数") |
|
|
@Excel(name = "新增人口数") |
|
|
private Integer houseModify; |
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "当日新增居民数") |
|
|
|
|
|
private Integer userIncr; |
|
|
private Integer userIncr; |
|
|
|
|
|
|
|
|
@Excel(name = "当日修改居民数") |
|
|
@Excel(name = "修改房屋数") |
|
|
|
|
|
private Integer houseModify; |
|
|
|
|
|
|
|
|
|
|
|
@Excel(name = "修改人口数") |
|
|
private Integer userModify; |
|
|
private Integer userModify; |
|
|
|
|
|
|
|
|
} |
|
|
} |