4 changed files with 156 additions and 1 deletions
@ -0,0 +1,86 @@ |
|||
package com.elink.esua.epdc.modules.item.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class ItemTimeoutNewExcel { |
|||
|
|||
/** |
|||
* 项目编号 |
|||
*/ |
|||
@Excel(name = "项目编号") |
|||
private String itemCode; |
|||
|
|||
/** |
|||
* 项目内容 |
|||
*/ |
|||
@Excel(name = "项目内容") |
|||
private String itemContent; |
|||
|
|||
/** |
|||
* 项目状态 |
|||
*/ |
|||
@Excel(name = "项目状态") |
|||
private String itemState; |
|||
/** |
|||
* 项目统计年月 |
|||
*/ |
|||
@Excel(name = "项目统计年月") |
|||
private String totalYearMonth; |
|||
/** |
|||
* 项目发布时间 |
|||
*/ |
|||
@Excel(name = "项目发布时间") |
|||
private String distributeTime; |
|||
/** |
|||
*最近一次处理时间 |
|||
*/ |
|||
@Excel(name = "最近一次处理时间") |
|||
private String lastHandleTime; |
|||
/** |
|||
* 转项目时间 |
|||
*/ |
|||
@Excel(name = "转项目时间") |
|||
private String itemCreatedTime; |
|||
/** |
|||
* 提交人 |
|||
*/ |
|||
@Excel(name = "提交人") |
|||
private String nickName; |
|||
/** |
|||
* 电话 |
|||
*/ |
|||
@Excel(name = "电话") |
|||
private String mobile; |
|||
/** |
|||
* 项目满意度 |
|||
*/ |
|||
@Excel(name = "项目满意度") |
|||
private String evaluationScore; |
|||
/** |
|||
* 支持数 |
|||
*/ |
|||
@Excel(name = "支持数") |
|||
private Integer approveNum; |
|||
/** |
|||
* 反对数 |
|||
*/ |
|||
@Excel(name = "反对数") |
|||
private Integer opposeNum; |
|||
/** |
|||
* 评论数 |
|||
*/ |
|||
@Excel(name = "评论数") |
|||
private Integer commentNum; |
|||
/** |
|||
* 浏览数 |
|||
*/ |
|||
@Excel(name = "浏览数") |
|||
private Integer browseNum; |
|||
/** |
|||
* 参与数 |
|||
*/ |
|||
@Excel(name = "参与数") |
|||
private Integer participantsNum; |
|||
} |
|||
Loading…
Reference in new issue