|
|
@ -1,11 +1,8 @@ |
|
|
|
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,31 +12,25 @@ import java.util.Date; |
|
|
|
@Data |
|
|
|
public class IcWorkLogExcel { |
|
|
|
|
|
|
|
@Excel(name = "网格员") |
|
|
|
@ColumnWidth(25) |
|
|
|
@Excel(name = "网格员", width = 25) |
|
|
|
private String createdUser; |
|
|
|
|
|
|
|
@Excel(name = "联系电话") |
|
|
|
@ColumnWidth(25) |
|
|
|
@Excel(name = "联系电话", width = 25) |
|
|
|
private String mobile; |
|
|
|
|
|
|
|
@Excel(name = "所属镇街") |
|
|
|
@ColumnWidth(25) |
|
|
|
@Excel(name = "所属镇街", width = 25) |
|
|
|
private String allAgencyName; |
|
|
|
|
|
|
|
@Excel(name = "所属网格") |
|
|
|
@ColumnWidth(25) |
|
|
|
@Excel(name = "所属网格", width = 25) |
|
|
|
private String gridName; |
|
|
|
|
|
|
|
@Excel(name = "标题") |
|
|
|
@ColumnWidth(25) |
|
|
|
@Excel(name = "标题", width = 25) |
|
|
|
private String title; |
|
|
|
|
|
|
|
@Excel(name = "日志时间") |
|
|
|
private String logDate; |
|
|
|
|
|
|
|
@Excel(name = "日志类型") |
|
|
|
@ColumnWidth(25) |
|
|
|
@Excel(name = "日志类型", width = 25) |
|
|
|
private String logType; |
|
|
|
|
|
|
|
@Excel(name = "内容") |
|
|
|