5 changed files with 123 additions and 1 deletions
@ -0,0 +1,67 @@ |
|||
package com.elink.esua.epdc.modules.item.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
@Data |
|||
public class StayItemExcel { |
|||
|
|||
/** |
|||
* 项目内容 |
|||
*/ |
|||
@Excel(name="项目内容") |
|||
private String itemContent; |
|||
/** |
|||
* 转项目时间 |
|||
*/ |
|||
@Excel(name="转项目时间") |
|||
private Date createdTime; |
|||
/** |
|||
* 提交人 |
|||
*/ |
|||
@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; |
|||
|
|||
/** |
|||
* 项目编号 |
|||
*/ |
|||
private String itemCode; |
|||
} |
|||
Loading…
Reference in new issue