From d4185d93c86e09c2b284906e65fb2d6d15c37e6c Mon Sep 17 00:00:00 2001 From: zhangfh Date: Wed, 11 Aug 2021 19:52:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A6=86=E5=B1=B1=E4=BB=A3=E7=A0=81=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EpdcScreenFrontPageDeptInfoResultDTO.java | 81 +++++++++++++++++++ ...FrontPageHouseTypeStatisticsResultDTO.java | 37 +++++++++ ...rontPagePersonInfoStatisticsResultDTO.java | 31 +++++++ 3 files changed, 149 insertions(+) create mode 100644 epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPageDeptInfoResultDTO.java create mode 100644 epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPageHouseTypeStatisticsResultDTO.java create mode 100644 epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPagePersonInfoStatisticsResultDTO.java diff --git a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPageDeptInfoResultDTO.java b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPageDeptInfoResultDTO.java new file mode 100644 index 0000000..07fccea --- /dev/null +++ b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPageDeptInfoResultDTO.java @@ -0,0 +1,81 @@ +package com.elink.esua.epdc.dto.analysis.pc.screen.result; + +import lombok.Data; + +import java.io.Serializable; + +/** + * create by: zhangfenghe + * description: 组织信息相应对象 + * create time: 2021.08.11 13:33 + */ +@Data +public class EpdcScreenFrontPageDeptInfoResultDTO implements Serializable { + private static final long serialVersionUID = 2049723191826318618L; + + /** + * 组织ID + */ + private int id; + + /** + * 组织名称 + */ + private String name; + + /** + * 组织类型:区党委:district_party、区直部门:district_dept、街道党工委:street_party、 + * 街道部门:street_dept、社区党工委:community_party、网格党支部:grid_party + */ + private String typeKey; + + /** + * 概况介绍 + */ + private String introduction; + + /** + * 辖区面积 + */ + private String acreage; + + /** + * 社区数量 + */ + private int communityNum; + + /** + * 网格数量 + */ + private int gridNum; + + /** + * 网格员数量 + */ + private int gridmanNum; + + /** + * 党员数量 + */ + private int partyMemberNum; + + /** + * 经度 + */ + private String longitude; + + /** + * 纬度 + */ + private String latitude; + + /** + * 社会治理业务流转图 + */ + private String deptBusinessCirculationImgUrl; + + /** + * 党组织架构图 + */ + private String deptPartyOrganizationStructureImgUrl; +} diff --git a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPageHouseTypeStatisticsResultDTO.java b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPageHouseTypeStatisticsResultDTO.java new file mode 100644 index 0000000..985010b --- /dev/null +++ b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPageHouseTypeStatisticsResultDTO.java @@ -0,0 +1,37 @@ +package com.elink.esua.epdc.dto.analysis.pc.screen.result; + +import java.io.Serializable; + +/** + * create by: zhangfenghe + * description: TODO + * create time: 2021/8/11 19:31 + */ +public class EpdcScreenFrontPageHouseTypeStatisticsResultDTO implements Serializable { + private static final long serialVersionUID = -1606806297838110267L; + + /** + *自住房屋数量 + */ + private int aloneLiveNum; + + /** + *出租房屋数量 + */ + private int rentNum; + + /** + *宿舍房屋数量 + */ + private int dormitoryNum; + + /** + *空置房屋数量 + */ + private int vacantNum; + + /** + *其他房屋数量 + */ + private int otherNum; +} diff --git a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPagePersonInfoStatisticsResultDTO.java b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPagePersonInfoStatisticsResultDTO.java new file mode 100644 index 0000000..45de219 --- /dev/null +++ b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/screen/result/EpdcScreenFrontPagePersonInfoStatisticsResultDTO.java @@ -0,0 +1,31 @@ +package com.elink.esua.epdc.dto.analysis.pc.screen.result; + +import java.io.Serializable; + +/** + * create by: zhangfenghe + * description: 首页-人口类型统计对象 + * create time: 2021/8/11 17:07 + */ +public class EpdcScreenFrontPagePersonInfoStatisticsResultDTO implements Serializable { + + private static final long serialVersionUID = -8067459990495551258L; + + /** + * 常住人口数量 + * + */ + private int permanentResidenceNum; + + /** + * 流动人口数量 + * + */ + private int floatingPopulationNum; + + /** + * 境外人口数量 + * + */ + private int overseasPopulationNum; +}