|
|
@ -1,6 +1,7 @@ |
|
|
|
package com.epmet.excel; |
|
|
|
|
|
|
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
|
|
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|
|
|
import lombok.Data; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
@ -15,24 +16,30 @@ import java.util.Date; |
|
|
|
public class IcWorkLogExcel { |
|
|
|
|
|
|
|
@Excel(name = "网格员") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String createdUser; |
|
|
|
|
|
|
|
@Excel(name = "联系电话") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String mobile; |
|
|
|
|
|
|
|
@Excel(name = "所属镇街") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String allAgencyName; |
|
|
|
|
|
|
|
@Excel(name = "所属网格") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String gridName; |
|
|
|
|
|
|
|
@Excel(name = "标题") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String title; |
|
|
|
|
|
|
|
@Excel(name = "日志时间") |
|
|
|
private String logDate; |
|
|
|
|
|
|
|
@Excel(name = "日志类型") |
|
|
|
@ColumnWidth(25) |
|
|
|
private String logType; |
|
|
|
|
|
|
|
@Excel(name = "内容") |
|
|
|