2 changed files with 80 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||||
|
package com.elink.esua.epdc.dto.analysis.pc.backstage.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author:liuchuang |
||||
|
* @Date:2021/8/24 11:08 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EpdcWorkbenchDataStatisticsFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -3594409498300008030L; |
||||
|
|
||||
|
private Long deptId; |
||||
|
} |
@ -0,0 +1,64 @@ |
|||||
|
package com.elink.esua.epdc.dto.analysis.pc.backstage.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author:liuchuang |
||||
|
* @Date:2021/8/24 11:08 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class EpdcWorkbenchDataStatisticsResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 6608581761807835181L; |
||||
|
|
||||
|
/** |
||||
|
* 话题数 |
||||
|
*/ |
||||
|
private Integer topicNum; |
||||
|
|
||||
|
/** |
||||
|
* 昨日新增话题数 |
||||
|
*/ |
||||
|
private Integer topicAddedYesterdayNum; |
||||
|
|
||||
|
/** |
||||
|
* 议题数 |
||||
|
*/ |
||||
|
private Integer issueNum; |
||||
|
|
||||
|
/** |
||||
|
* 昨日新增议题数 |
||||
|
*/ |
||||
|
private Integer issueAddedYesterdayNum; |
||||
|
|
||||
|
/** |
||||
|
* 项目数 |
||||
|
*/ |
||||
|
private Integer itemNum; |
||||
|
|
||||
|
/** |
||||
|
* 昨日新增项目数 |
||||
|
*/ |
||||
|
private Integer itemAddedYesterdayNum; |
||||
|
|
||||
|
/** |
||||
|
* 项目结案数 |
||||
|
*/ |
||||
|
private Integer itemCaseClosedNum; |
||||
|
|
||||
|
/** |
||||
|
* 昨日新增项目结案数 |
||||
|
*/ |
||||
|
private Integer itemCaseClosedAddedYesterdayNum; |
||||
|
|
||||
|
/** |
||||
|
* 项目督办数 |
||||
|
*/ |
||||
|
private Integer superviseItemNum; |
||||
|
|
||||
|
/** |
||||
|
* 昨日新增项目督办数 |
||||
|
*/ |
||||
|
private Integer superviseItemAddedYesterdayNum; |
||||
|
} |
Loading…
Reference in new issue