14 changed files with 251 additions and 201 deletions
@ -0,0 +1,96 @@ |
|||
package com.epmet.dto.indexcollect.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 1、党建能力-党员相关指标上报(按照月份) 入参 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/9/4 16:04 |
|||
*/ |
|||
@Data |
|||
public class GridPartyMemberDataDetailFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 2923515319015973995L; |
|||
/** |
|||
* 机关id:网格所属的组织id |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
/** |
|||
* yyyyQ1, yyyyQ2, yyyyQ3, yyyyQ4 |
|||
*/ |
|||
private String quarterId; |
|||
|
|||
/** |
|||
* yyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
/** |
|||
* 党员提出的话题数 |
|||
*/ |
|||
private Integer createTopicCount; |
|||
|
|||
/** |
|||
* 党员参与话题数(支持,反对,评论,浏览) |
|||
*/ |
|||
private Integer joinTopicCount; |
|||
|
|||
/** |
|||
* 话题转议题数 |
|||
*/ |
|||
private Integer shiftIssueCount; |
|||
|
|||
/** |
|||
* 议题转项目数 |
|||
*/ |
|||
private Integer shiftProjectCount; |
|||
|
|||
/** |
|||
* 参加三会一课次数 |
|||
*/ |
|||
private Integer joinThreeMeetsCount; |
|||
|
|||
/** |
|||
* 自建群群众人数 |
|||
*/ |
|||
private Integer groupUserCount; |
|||
|
|||
/** |
|||
* 自建群活跃度-话题数 |
|||
*/ |
|||
private Integer groupTopicCount; |
|||
|
|||
/** |
|||
* 议题转项目率 |
|||
*/ |
|||
private BigDecimal topicToIssueRatio; |
|||
|
|||
/** |
|||
* 上级组织Id |
|||
*/ |
|||
private String parentId; |
|||
|
|||
/** |
|||
* 党员自建群活跃群众人数(08-24) |
|||
*/ |
|||
private Integer groupActiveUserCount; |
|||
|
|||
/** |
|||
* 用户id |
|||
*/ |
|||
private String userId; |
|||
} |
|||
@ -0,0 +1,105 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 描述一下 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/9/4 15:43 |
|||
*/ |
|||
@Data |
|||
public class DifficultyDataDetailFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 4893795146396420078L; |
|||
/** |
|||
* 组织类别 agency:组织;部门:department;网格:grid |
|||
*/ |
|||
private String orgType; |
|||
|
|||
/** |
|||
* 组织Id 可以为网格,机关id |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 上级组织Id |
|||
*/ |
|||
private String parentId; |
|||
|
|||
/** |
|||
* 组织名称 |
|||
*/ |
|||
private String orgName; |
|||
|
|||
/** |
|||
* 事件原Id |
|||
*/ |
|||
private String eventId; |
|||
|
|||
/** |
|||
* 事件图片 URL |
|||
*/ |
|||
private String eventImgUrl; |
|||
|
|||
/** |
|||
* 事件来源 eg: XXX街道-xx社区-网格 |
|||
*/ |
|||
private String eventSource; |
|||
|
|||
/** |
|||
* 事件内容 |
|||
*/ |
|||
private String eventContent; |
|||
|
|||
/** |
|||
* 事件耗时单位:分钟 |
|||
*/ |
|||
private Integer eventCostTime; |
|||
|
|||
/** |
|||
* 事件设计部门数 |
|||
*/ |
|||
private Integer eventReOrg; |
|||
|
|||
/** |
|||
* 事件类别编码 |
|||
*/ |
|||
private String eventCategoryCode; |
|||
|
|||
/** |
|||
* 事件状态编码 |
|||
*/ |
|||
private String eventStatusCode; |
|||
|
|||
/** |
|||
* 事件类别名称 |
|||
*/ |
|||
private String eventCategoryName; |
|||
|
|||
/** |
|||
* 事件状态描述 |
|||
*/ |
|||
private String eventStatusDesc; |
|||
|
|||
/** |
|||
* 最近一次操作说明 eg: 转项目,结案,流转 |
|||
*/ |
|||
private String latestOperateDesc; |
|||
|
|||
/** |
|||
* 事件被处理次数(08-21新增) |
|||
*/ |
|||
private Integer eventHandledCount; |
|||
|
|||
/** |
|||
* 数据更新至: yyyy|yyyyMM|yyyyMMdd(08-21新增) |
|||
*/ |
|||
private String dataEndTime; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开(8.26新增) |
|||
*/ |
|||
private String allParentIds; |
|||
} |
|||
Loading…
Reference in new issue