2 changed files with 197 additions and 0 deletions
@ -0,0 +1,123 @@ |
|||||
|
package com.elink.esua.epdc.dto.screen.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 网格员数据分析上报 |
||||
|
* @Auther: songyunpeng |
||||
|
* @Date: 2021-06-25 09:59 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridManagerUploadDataResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 日期ID |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 月ID |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 年ID |
||||
|
*/ |
||||
|
private String yearId; |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 机关id:网格所属的组织id |
||||
|
*/ |
||||
|
private String agencyId; |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 工作人员id【网格员基础信息接口获取】 |
||||
|
*/ |
||||
|
private String staffId ; |
||||
|
|
||||
|
/** |
||||
|
* 工作人员姓名【网格员基础信息接口获取】 |
||||
|
*/ |
||||
|
private String staffName; |
||||
|
|
||||
|
/** |
||||
|
* 项目立项数,截止到当前dateId的总数 |
||||
|
*/ |
||||
|
private Integer projectCount; |
||||
|
|
||||
|
/** |
||||
|
* 议题转项目数,截止到当前dateId的总数 |
||||
|
*/ |
||||
|
private Integer issueToProjectCount ; |
||||
|
|
||||
|
/** |
||||
|
* 议题关闭数,截止到当前dateId的总数 |
||||
|
*/ |
||||
|
private Integer closedIssueCount ; |
||||
|
|
||||
|
/** |
||||
|
* 项目响应数,截止到当前dateId的总数 |
||||
|
*/ |
||||
|
private Integer projectResponseCount ; |
||||
|
|
||||
|
/** |
||||
|
* 项目吹哨数,截止到当前dateId的总数 |
||||
|
*/ |
||||
|
private Integer projectTransferCount ; |
||||
|
|
||||
|
/** |
||||
|
* 项目结案数,dateId这一天的增量 |
||||
|
*/ |
||||
|
private Integer projectClosedCount ; |
||||
|
|
||||
|
/** |
||||
|
* 项目结案数,dateId这一天的增量 |
||||
|
*/ |
||||
|
private Integer projectIncr ; |
||||
|
|
||||
|
/** |
||||
|
* 议题转项目数,dateId这一天的增量 |
||||
|
*/ |
||||
|
private Integer issueToProjectIncr ; |
||||
|
|
||||
|
/** |
||||
|
* 议题关闭数,dateId这一天的增量 |
||||
|
*/ |
||||
|
private Integer closedIssueIncr ; |
||||
|
|
||||
|
/** |
||||
|
* 项目响应数,dateId这一天的增量 |
||||
|
*/ |
||||
|
private Integer projectResponseIncr ; |
||||
|
|
||||
|
/** |
||||
|
* 项目吹哨数,dateId这一天的增量 |
||||
|
*/ |
||||
|
private Integer projectTransferIncr ; |
||||
|
/** |
||||
|
* 项目结案数,截止到当前dateId的总数 |
||||
|
*/ |
||||
|
private Integer projectClosedIncr ; |
||||
|
|
||||
|
|
||||
|
} |
||||
@ -0,0 +1,74 @@ |
|||||
|
package com.elink.esua.epdc.dto.screen.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 网格员事件总数上报 |
||||
|
* @Auther: songyunpeng |
||||
|
* @Date: 2021-06-25 09:59 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridManagerUploadEventResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 日期ID |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 月ID |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 年ID |
||||
|
*/ |
||||
|
private String yearId; |
||||
|
|
||||
|
/** |
||||
|
* 周ID |
||||
|
*/ |
||||
|
private String weekId; |
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 季度ID |
||||
|
*/ |
||||
|
private String quarterId; |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 机关id:网格所属的组织id |
||||
|
*/ |
||||
|
private String agencyId; |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 产品这边工作人员用户id |
||||
|
*/ |
||||
|
private String staffId ; |
||||
|
|
||||
|
/** |
||||
|
* 事件数 |
||||
|
*/ |
||||
|
private Integer reportProjectCount; |
||||
|
} |
||||
Loading…
Reference in new issue