2 changed files with 70 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.backstage.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/26 15:50 |
|||
*/ |
|||
@Data |
|||
public class EpdcWorkStatusAnalysisFormDTO implements Serializable { |
|||
private static final long serialVersionUID = -674921463403947664L; |
|||
|
|||
private Long deptId; |
|||
|
|||
/** |
|||
* 统计日期类型:yesterday-昨天,lastWeek-上周,lastMonth-上个月 |
|||
*/ |
|||
private String dateType; |
|||
} |
@ -0,0 +1,49 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.backstage.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/26 15:52 |
|||
*/ |
|||
@Data |
|||
public class EpdcWorkStatusAnalysisResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 9197856525046007900L; |
|||
|
|||
/** |
|||
* 部门ID |
|||
*/ |
|||
private Long deptId; |
|||
|
|||
/** |
|||
* 部门名称 |
|||
*/ |
|||
private String deptName; |
|||
|
|||
/** |
|||
* 话题数 |
|||
*/ |
|||
private Integer topicNum; |
|||
|
|||
/** |
|||
* 议题数 |
|||
*/ |
|||
private Integer issueNum; |
|||
|
|||
/** |
|||
* 项目数 |
|||
*/ |
|||
private Integer itemNum; |
|||
|
|||
/** |
|||
* 项目结案数 |
|||
*/ |
|||
private Integer itemCaseClosedNum; |
|||
|
|||
/** |
|||
* 项目督办数 |
|||
*/ |
|||
private Integer superviseItemNum; |
|||
} |
Loading…
Reference in new issue