From 798cbc69a91f7105b5a96a6d714226c9a66f15e3 Mon Sep 17 00:00:00 2001 From: zhangyuan Date: Tue, 31 May 2022 13:25:15 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E6=AD=A5=E5=8E=9F=E5=9E=8B=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/epmet/excel/FactUserHouseExcel.java | 31 +++++++++---------- 1 file changed, 14 insertions(+), 17 deletions(-) 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