15 changed files with 659 additions and 7 deletions
@ -0,0 +1,36 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 安宁-社区-项目概况(数量、颜色) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-10-09 |
|||
*/ |
|||
@Data |
|||
public class AnCommunityProjectProfileFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 1466172677051250092L; |
|||
|
|||
/** |
|||
* 数据更新至: yyyy|yyyyMM|yyyyMMdd,项目根据实际情况赋值 |
|||
*/ |
|||
private String dataEndTime; |
|||
|
|||
/** |
|||
* 社区id |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 项目数 |
|||
*/ |
|||
private Integer projectTotal; |
|||
|
|||
/** |
|||
* 等级 |
|||
*/ |
|||
private String level; |
|||
} |
@ -0,0 +1,62 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 安宁-基层治理-各类数 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-10-09 |
|||
*/ |
|||
@Data |
|||
public class AnGrassRootsGovernMonthlyFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -6947401956711903753L; |
|||
|
|||
/** |
|||
* 网格,街道或社区id |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 网格,街道名称或者社区名称 |
|||
*/ |
|||
private String orgName; |
|||
|
|||
/** |
|||
* 网格:grid;组织:agency |
|||
*/ |
|||
private String orgType; |
|||
|
|||
/** |
|||
* org_id的上一级id |
|||
*/ |
|||
private String pid; |
|||
|
|||
/** |
|||
* 参与项目数 |
|||
*/ |
|||
private Integer partiProjectTotal; |
|||
|
|||
/** |
|||
* 办结项目数 |
|||
*/ |
|||
private Integer closedProjectTotal; |
|||
|
|||
/** |
|||
* 项目响应度 存储的是%前面的数 |
|||
*/ |
|||
private BigDecimal projectResponseRatio; |
|||
|
|||
/** |
|||
* 项目满意率,存储的是%前面的数 |
|||
*/ |
|||
private BigDecimal projectSatisRatio; |
|||
|
|||
/** |
|||
* 办结率 for 社区 |
|||
*/ |
|||
private BigDecimal closedProjectRatio; |
|||
} |
@ -0,0 +1,51 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 安宁-基层组织(党群数|议题数|项目数)-按月 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-10-09 |
|||
*/ |
|||
@Data |
|||
public class AnGrassRootsOrgMonthlyFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -7389300512268641307L; |
|||
/** |
|||
* 网格id或者组织(街道或社区)id |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 组织名称OR网格名称 |
|||
*/ |
|||
private String orgName; |
|||
|
|||
/** |
|||
* 网格:grid; 组织:agency |
|||
*/ |
|||
private String orgType; |
|||
|
|||
/** |
|||
* org_id的上一级id |
|||
*/ |
|||
private String pid; |
|||
|
|||
/** |
|||
* 党群数 |
|||
*/ |
|||
private Integer groupTotal; |
|||
|
|||
/** |
|||
* 议题数 |
|||
*/ |
|||
private Integer issueTotal; |
|||
|
|||
/** |
|||
* 项目数 |
|||
*/ |
|||
private Integer projectTotal; |
|||
|
|||
} |
@ -0,0 +1,71 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 安宁-基层党员-排行榜单 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-10-09 |
|||
*/ |
|||
@Data |
|||
public class AnGrassRootsPmRankFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 3642729389245262928L; |
|||
|
|||
/** |
|||
* 用户id |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 姓名 |
|||
*/ |
|||
private String userName; |
|||
|
|||
/** |
|||
* 所属支部id |
|||
*/ |
|||
private String branchId; |
|||
|
|||
/** |
|||
* 所属支部名称 |
|||
*/ |
|||
private String branchName; |
|||
|
|||
/** |
|||
* 所属社区id |
|||
*/ |
|||
private String communityId; |
|||
|
|||
/** |
|||
* 所属社区名称 |
|||
*/ |
|||
private String communityName; |
|||
|
|||
/** |
|||
* 群成员数 |
|||
*/ |
|||
private Integer groupMemberTotal; |
|||
|
|||
/** |
|||
* 话题数 |
|||
*/ |
|||
private Integer topicTotal; |
|||
|
|||
/** |
|||
* 参与人次 |
|||
*/ |
|||
private Integer partiUserTotal; |
|||
|
|||
/** |
|||
* 议题数 |
|||
*/ |
|||
private Integer issueTotal; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 |
|||
*/ |
|||
private String allParentIds; |
|||
} |
@ -0,0 +1,57 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 安宁-基层党员-各类总数 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-10-09 |
|||
*/ |
|||
@Data |
|||
public class AnGrassRootsPmTotalMonthlyFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 8675347783888892404L; |
|||
|
|||
/** |
|||
* 网格id或者组织(街道或社区)id |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 组织名称OR网格名称 |
|||
*/ |
|||
private String orgName; |
|||
|
|||
/** |
|||
* 网格:grid;组织:agency |
|||
*/ |
|||
private String orgType; |
|||
|
|||
/** |
|||
* org_id的上一级id |
|||
*/ |
|||
private String pid; |
|||
|
|||
/** |
|||
* 群成员数 |
|||
*/ |
|||
private Integer groupMemberTotal; |
|||
|
|||
/** |
|||
* 话题数 |
|||
*/ |
|||
private Integer topicTotal; |
|||
|
|||
/** |
|||
* 话题参与人次 |
|||
*/ |
|||
private Integer topicPartiUserTotal; |
|||
|
|||
/** |
|||
* 议题数 |
|||
*/ |
|||
private Integer issueTotal; |
|||
|
|||
} |
Loading…
Reference in new issue