|
|
|
@ -24,65 +24,67 @@ public class GridOpeningResultDTO implements Serializable { |
|
|
|
/** |
|
|
|
* 用户注册数 |
|
|
|
*/ |
|
|
|
private Integer registerCount; |
|
|
|
private int registerCount = 0; |
|
|
|
/** |
|
|
|
* 认证居民 |
|
|
|
*/ |
|
|
|
private Integer residentCount; |
|
|
|
private int residentCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 认证党员数 |
|
|
|
*/ |
|
|
|
private Integer partyCount; |
|
|
|
private int partyCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 居民扫码数 |
|
|
|
*/ |
|
|
|
private Integer ewmCount; |
|
|
|
private int ewmCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 新闻数 |
|
|
|
*/ |
|
|
|
private Integer newsCount; |
|
|
|
private int newsCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 通知数 |
|
|
|
*/ |
|
|
|
private Integer noticeCount; |
|
|
|
private int noticeCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 议题数 |
|
|
|
*/ |
|
|
|
private Integer eventCount; |
|
|
|
private int eventCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 项目数 |
|
|
|
*/ |
|
|
|
private Integer itemCount; |
|
|
|
private int itemCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 项目结案数 |
|
|
|
*/ |
|
|
|
private Integer itemCloseCount; |
|
|
|
private int itemCloseCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 社群数 |
|
|
|
*/ |
|
|
|
private Integer communityCount; |
|
|
|
private int communityCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 社群成员数 |
|
|
|
*/ |
|
|
|
private Integer communityMemberCount; |
|
|
|
private int communityMemberCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 社群话题数 |
|
|
|
*/ |
|
|
|
private Integer communityTopicCount; |
|
|
|
private int communityTopicCount = 0; |
|
|
|
|
|
|
|
/** |
|
|
|
* 网格长姓名 |
|
|
|
*/ |
|
|
|
private String gridLeader; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|