3 changed files with 149 additions and 0 deletions
@ -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; |
|||
} |
@ -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; |
|||
} |
@ -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; |
|||
} |
Loading…
Reference in new issue