2 changed files with 108 additions and 0 deletions
@ -0,0 +1,72 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.backstage.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/27 9:30 |
|||
*/ |
|||
@Data |
|||
public class EpdcWorkbenchDataAnalysisExcel { |
|||
|
|||
/** |
|||
* 话题数 |
|||
*/ |
|||
@Excel(name = "话题数", width = 50) |
|||
private Integer topicNum; |
|||
|
|||
/** |
|||
* 昨日新增话题数 |
|||
*/ |
|||
@Excel(name = "昨日新增话题数", width = 50) |
|||
private Integer topicAddedYesterdayNum; |
|||
|
|||
/** |
|||
* 议题数 |
|||
*/ |
|||
@Excel(name = "议题数", width = 50) |
|||
private Integer issueNum; |
|||
|
|||
/** |
|||
* 昨日新增议题数 |
|||
*/ |
|||
@Excel(name = "昨日新增议题数", width = 50) |
|||
private Integer issueAddedYesterdayNum; |
|||
|
|||
/** |
|||
* 项目数 |
|||
*/ |
|||
@Excel(name = "项目数", width = 50) |
|||
private Integer itemNum; |
|||
|
|||
/** |
|||
* 昨日新增项目数 |
|||
*/ |
|||
@Excel(name = "昨日新增项目数", width = 50) |
|||
private Integer itemAddedYesterdayNum; |
|||
|
|||
/** |
|||
* 项目结案数 |
|||
*/ |
|||
@Excel(name = "项目结案数", width = 50) |
|||
private Integer itemCaseClosedNum; |
|||
|
|||
/** |
|||
* 昨日新增项目结案数 |
|||
*/ |
|||
@Excel(name = "昨日新增项目结案数", width = 50) |
|||
private Integer itemCaseClosedAddedYesterdayNum; |
|||
|
|||
/** |
|||
* 项目督办数 |
|||
*/ |
|||
@Excel(name = "项目督办数", width = 50) |
|||
private Integer superviseItemNum; |
|||
|
|||
/** |
|||
* 昨日新增项目督办数 |
|||
*/ |
|||
@Excel(name = "昨日新增项目督办数", width = 50) |
|||
private Integer superviseItemAddedYesterdayNum; |
|||
} |
@ -0,0 +1,36 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.backstage.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/27 9:32 |
|||
*/ |
|||
@Data |
|||
public class EpdcWorkbenchTopicIssueItemAnalysisExcel { |
|||
|
|||
/** |
|||
* 部门名称 |
|||
*/ |
|||
@Excel(name = "组织", width = 50) |
|||
private String deptName; |
|||
|
|||
/** |
|||
* 话题数量 |
|||
*/ |
|||
@Excel(name = "话题数", width = 50) |
|||
private Integer topicNum; |
|||
|
|||
/** |
|||
* 议题数量 |
|||
*/ |
|||
@Excel(name = "议题数", width = 50) |
|||
private Integer issueNum; |
|||
|
|||
/** |
|||
* 项目数量 |
|||
*/ |
|||
@Excel(name = "项目数", width = 50) |
|||
private Integer itemNum; |
|||
} |
Loading…
Reference in new issue