11 changed files with 1053 additions and 353 deletions
@ -0,0 +1,67 @@ |
|||
package com.elink.esua.epdc.dto.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @program: esua-epdc |
|||
* @description: 公众参与各类总数 |
|||
* @author: wangtong |
|||
* @create: 2020-08-24 18:24 |
|||
**/ |
|||
@Data |
|||
public class PublicpartitotaldataResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -8840441410009038154L; |
|||
|
|||
/** |
|||
*组织类别 agency:组织;部门:department;网格:grid |
|||
*/ |
|||
private String orgType; |
|||
|
|||
/** |
|||
*组织Id 可以为网格,机关id |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
*上级组织Id |
|||
*/ |
|||
private String parentId; |
|||
|
|||
/** |
|||
*组织名称 |
|||
*/ |
|||
private String orgName; |
|||
|
|||
/** |
|||
*话题总数 |
|||
*/ |
|||
private Integer topicTotal; |
|||
|
|||
/** |
|||
*议题总数 |
|||
*/ |
|||
private Integer issueTotal; |
|||
|
|||
/** |
|||
*项目总数 |
|||
*/ |
|||
private Integer projectTotal; |
|||
|
|||
/** |
|||
*注册人数 |
|||
*/ |
|||
private Integer regUserTotal; |
|||
|
|||
/** |
|||
*参与人数 |
|||
*/ |
|||
private Integer joinUserTotal; |
|||
|
|||
/** |
|||
*数据更新至: yyyy|yyyyMM|yyyyMMdd |
|||
*/ |
|||
private String dataEndTime; |
|||
} |
|||
File diff suppressed because it is too large
Loading…
Reference in new issue