From 8bc42b99d7809294d1cd9621f03ee995efee72fb Mon Sep 17 00:00:00 2001 From: Jackwang Date: Wed, 25 Aug 2021 10:34:28 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BD=91=E6=A0=BC=E6=8E=92=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../analysis/pc/user/GridOpeningJobDTO.java | 162 ++++++++++++++++++ .../pc/user/result/GridOpeningResultDTO.java | 2 + 2 files changed, 164 insertions(+) create mode 100644 epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/user/GridOpeningJobDTO.java diff --git a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/user/GridOpeningJobDTO.java b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/user/GridOpeningJobDTO.java new file mode 100644 index 0000000..242cf52 --- /dev/null +++ b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/user/GridOpeningJobDTO.java @@ -0,0 +1,162 @@ +/** + * Copyright 2018 人人开源 https://www.renren.io + *

+ * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + *

+ * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + *

+ * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package com.elink.esua.epdc.dto.analysis.pc.user; + +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + + +/** + * 网格排名情况 + * + * @author qu qu@elink-cn.com + * @since v1.0.0 2021-08-24 + */ +@Data +public class GridOpeningJobDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键 + */ + private String id; + + /** + * 网格id + */ + private String gridid; + + /** + * 街道社区网格 + */ + private String alldeptname; + + /** + * 用户注册数 + */ + private Integer registercount; + + /** + * 居民数(包括认证成功和党员认证失败的居民) + */ + private Integer residentcount; + + /** + * 认证党员数 + */ + private Integer partycount; + + /** + * 未认证用户(根据用户第一次扫码的网格统计) + */ + private Integer unauthorizedcount; + + /** + * 居民扫码数 + */ + private Integer ewmcount; + + /** + * 新闻数 + */ + private Integer newscount; + + /** + * 通知数 + */ + private Integer noticecount; + + /** + * 议题数 + */ + private Integer eventcount; + + /** + * 项目数 + */ + private Integer itemcount; + + /** + * 项目解决数 + */ + private Integer itemclosecount; + + /** + * 项目好评数(满意度评价为非常满意) + */ + private Integer itempraisecount; + + /** + * 社群数 + */ + private Integer communitycount; + + /** + * 社群成员数 + */ + private Integer communitymembercount; + + /** + * 社群话题数 + */ + private Integer communitytopiccount; + + /** + * 企业数 + */ + private Integer enterprisecount; + + /** + * 网格长姓名 + */ + private String gridleader; + + /** + * 所有网格id + */ + private String alldeptids; + + /** + * 删除标记(0-否,1-是) + */ + private String delFlag; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + +} \ No newline at end of file diff --git a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/user/result/GridOpeningResultDTO.java b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/user/result/GridOpeningResultDTO.java index 894f6fc..af17720 100644 --- a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/user/result/GridOpeningResultDTO.java +++ b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/user/result/GridOpeningResultDTO.java @@ -17,6 +17,8 @@ public class GridOpeningResultDTO implements Serializable { private String gridId; + private String allDeptIds; + /** * 街道社区网格 */