5 changed files with 57 additions and 1 deletions
@ -0,0 +1,24 @@ |
|||
package com.elink.esua.epdc.modules.events.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* 议题管理 - 待回应 导出类 |
|||
* |
|||
* @author Mark sunlightcs@gmail.com |
|||
* @since v1.0.0 2019-09-04 |
|||
*/ |
|||
@Data |
|||
public class UnEventsExcel { |
|||
|
|||
@Excel(name = "议题内容") |
|||
private String eventContent; |
|||
@Excel(name = "提交时间") |
|||
private String createdTime; |
|||
@Excel(name = "提交人") |
|||
private String nickName; |
|||
@Excel(name = "所属网格") |
|||
private String allDeptNames; |
|||
|
|||
} |
|||
Loading…
Reference in new issue