6 changed files with 106 additions and 0 deletions
@ -0,0 +1,66 @@ |
|||
package com.elink.esua.epdc.modules.issue.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
import java.util.Date; |
|||
|
|||
@Data |
|||
public class UnDisposeExcel { |
|||
|
|||
/** |
|||
* 议题内容 |
|||
*/ |
|||
@Excel(name = "议题内容") |
|||
private String issueContent; |
|||
/** |
|||
* 提交时间 |
|||
*/ |
|||
@Excel(name = "提交时间") |
|||
private Date createdTime; |
|||
/** |
|||
* 提交人 |
|||
*/ |
|||
@Excel(name = "提交人") |
|||
private String nickName; |
|||
/** |
|||
* 参与人数 |
|||
*/ |
|||
@Excel(name = "参与人数") |
|||
private Integer participateNum; |
|||
/** |
|||
* 支持人数 |
|||
*/ |
|||
@Excel(name = "支持人数") |
|||
private Integer approveNum; |
|||
/** |
|||
* 反对人数 |
|||
*/ |
|||
@Excel(name = "反对人数") |
|||
private Integer opposeNum; |
|||
/** |
|||
* 评论数 |
|||
*/ |
|||
@Excel(name = "评论数") |
|||
private Integer commentNum; |
|||
/** |
|||
* 浏览数 |
|||
*/ |
|||
@Excel(name = "浏览数") |
|||
private Integer browseNum; |
|||
|
|||
/** |
|||
* 议题编号 |
|||
*/ |
|||
@Excel(name = "议题编号") |
|||
private String issueCode; |
|||
|
|||
/** |
|||
* 来源:话题名称或者‘党群议事’ |
|||
*/ |
|||
@Excel(name = "来源") |
|||
private String groupName; |
|||
|
|||
@Excel(name = "所属网格") |
|||
private String allDeptName; |
|||
} |
Loading…
Reference in new issue