2 changed files with 164 additions and 0 deletions
@ -0,0 +1,162 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* 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. |
|||
* <p> |
|||
* 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. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
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; |
|||
|
|||
} |
|||
Loading…
Reference in new issue