2 changed files with 55 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/26 11:01 |
|||
*/ |
|||
@Data |
|||
public class EpdcWorkbenchTopicIssueItemAnalysisFormDTO implements Serializable { |
|||
private static final long serialVersionUID = 400296734298107410L; |
|||
|
|||
private Long deptId; |
|||
} |
@ -0,0 +1,39 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.backstage.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/26 10:59 |
|||
*/ |
|||
@Data |
|||
public class EpdcWorkbenchTopicIssueItemAnalysisResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 2307114632327183546L; |
|||
|
|||
/** |
|||
* 部门ID |
|||
*/ |
|||
private Long deptId; |
|||
|
|||
/** |
|||
* 部门名称 |
|||
*/ |
|||
private String deptName; |
|||
|
|||
/** |
|||
* 话题数量 |
|||
*/ |
|||
private Integer topicNum; |
|||
|
|||
/** |
|||
* 议题数量 |
|||
*/ |
|||
private Integer issueNum; |
|||
|
|||
/** |
|||
* 项目数量 |
|||
*/ |
|||
private Integer itemNum; |
|||
} |
Loading…
Reference in new issue