16 changed files with 514 additions and 5 deletions
@ -0,0 +1,178 @@ |
|||||
|
/** |
||||
|
* 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.epmet.dto.extract.form; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* 党建能力-网格相关事实表 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2020-09-19 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PartyAbilityGridMonthlyFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* ID 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 机关Id |
||||
|
*/ |
||||
|
private String agencyId; |
||||
|
|
||||
|
/** |
||||
|
* 网格Id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 月维度Id:yyyyMM |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 季度Id yyyyQ1,yyyyQ2,yyyyQ3,yyyyQ4 |
||||
|
*/ |
||||
|
private String quarterId; |
||||
|
|
||||
|
/** |
||||
|
* 年Idyyyy |
||||
|
*/ |
||||
|
private String yearId; |
||||
|
|
||||
|
/** |
||||
|
* 网格群众用户数 |
||||
|
*/ |
||||
|
private Integer userCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格党员用户数 |
||||
|
*/ |
||||
|
private Integer partyCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格活跃群众用户数 |
||||
|
*/ |
||||
|
private Integer activeUserCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格活跃党员用户数 |
||||
|
*/ |
||||
|
private Integer activePartyCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格党员人均提出话题数 |
||||
|
*/ |
||||
|
private Integer partyAvgTopicCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格群众人均提出话题数 |
||||
|
*/ |
||||
|
private Integer userAvgTopicCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格党员人均提出的议题转项目数 |
||||
|
*/ |
||||
|
private Integer partyAvgShiftProjectCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格群众人均提出的议题转项目数 |
||||
|
*/ |
||||
|
private Integer userAvgShiftProjectCount; |
||||
|
|
||||
|
/** |
||||
|
* 建群党员数(累计值) 去重 |
||||
|
*/ |
||||
|
private Integer createGroupPartyCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格发文数 |
||||
|
*/ |
||||
|
private Integer publishArticleCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格议题转项目率 |
||||
|
*/ |
||||
|
private BigDecimal issueToProjectRatio; |
||||
|
|
||||
|
/** |
||||
|
* 组织三会一课次数 |
||||
|
*/ |
||||
|
private Integer createThreeMeetsCount; |
||||
|
|
||||
|
/** |
||||
|
* 党员参加三会一课人次 |
||||
|
*/ |
||||
|
private Integer joinThreeMeetsCount; |
||||
|
|
||||
|
/** |
||||
|
* 删除标识 0未删除;1已删除 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
public PartyAbilityGridMonthlyFormDTO() { |
||||
|
this.userCount = NumConstant.ZERO; |
||||
|
this.partyCount = NumConstant.ZERO; |
||||
|
this.activeUserCount = NumConstant.ZERO; |
||||
|
this.activePartyCount = NumConstant.ZERO; |
||||
|
this.partyAvgTopicCount = NumConstant.ZERO; |
||||
|
this.userAvgTopicCount = NumConstant.ZERO; |
||||
|
this.partyAvgShiftProjectCount = NumConstant.ZERO; |
||||
|
this.userAvgShiftProjectCount = NumConstant.ZERO; |
||||
|
this.createGroupPartyCount = NumConstant.ZERO; |
||||
|
this.publishArticleCount = NumConstant.ZERO; |
||||
|
this.issueToProjectRatio = new BigDecimal(NumConstant.ZERO); |
||||
|
this.createThreeMeetsCount = NumConstant.ZERO; |
||||
|
this.joinThreeMeetsCount = NumConstant.ZERO; |
||||
|
this.delFlag = NumConstant.ZERO_STR; |
||||
|
this.revision = NumConstant.ZERO; |
||||
|
this.createdBy = "APP_USER"; |
||||
|
this.updatedBy = "APP_USER"; |
||||
|
} |
||||
|
} |
@ -0,0 +1,25 @@ |
|||||
|
package com.epmet.dto.extract.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/9/19 1:55 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class CreateTopicCountResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 500844515980125608L; |
||||
|
|
||||
|
/** |
||||
|
* 网格ID |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 网格 党员/群众 人均提出话题数 |
||||
|
*/ |
||||
|
private Integer createTopicCount; |
||||
|
} |
@ -0,0 +1,45 @@ |
|||||
|
package com.epmet.dto.extract.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/9/19 10:59 上午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridUserCountResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -2912049598149499392L; |
||||
|
|
||||
|
/** |
||||
|
* 注册居民本月增量 |
||||
|
*/ |
||||
|
private Integer userCount; |
||||
|
|
||||
|
/** |
||||
|
* 注册党员本月增量 |
||||
|
*/ |
||||
|
private Integer partyCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格ID |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 月份ID |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 季度ID |
||||
|
*/ |
||||
|
private String quarterId; |
||||
|
|
||||
|
/** |
||||
|
* 年度ID |
||||
|
*/ |
||||
|
private String yearId; |
||||
|
} |
Loading…
Reference in new issue