diff --git a/epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/excel/FactUserHouseExcel.java b/epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/excel/FactUserHouseExcel.java index 96c5860cfb..47e4445591 100644 --- a/epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/excel/FactUserHouseExcel.java +++ b/epmet-module/data-statistical/data-statistical-server/src/main/java/com/epmet/excel/FactUserHouseExcel.java @@ -14,46 +14,43 @@ import java.util.Date; @Data public class FactUserHouseExcel { - @Excel(name = "日期") - private String dateId; - - @Excel(name = "组织名称") + @Excel(name = "组织结构") private String agencyName; - @Excel(name = "小区总数") + @Excel(name = "小区数") private Integer neighbourhoodsCount; - @Excel(name = "房屋总数") + @Excel(name = "房屋数") private Integer houseCount; - @Excel(name = "自住房屋总数") + @Excel(name = "自住房屋数") private Integer houseSelfCount; - @Excel(name = "出租房屋总数") + @Excel(name = "出租房屋数") private Integer houseLeaseCount; - @Excel(name = "闲置房屋总数") + @Excel(name = "闲置房屋数") private Integer houseIdleCount; @Excel(name = "居民总数") private Integer userCount; - @Excel(name = "常住居民总数") + @Excel(name = "常住人口数") private Integer userResiCount; - @Excel(name = "流动居民总数") + @Excel(name = "流动人口数") private Integer userFloatCount; - @Excel(name = "当日新增房屋数") + @Excel(name = "新增房屋数") private Integer houseIncr; - @Excel(name = "当日修改房屋数") - private Integer houseModify; - - @Excel(name = "当日新增居民数") + @Excel(name = "新增人口数") private Integer userIncr; - @Excel(name = "当日修改居民数") + @Excel(name = "修改房屋数") + private Integer houseModify; + + @Excel(name = "修改人口数") private Integer userModify; } \ No newline at end of file