4 changed files with 119 additions and 0 deletions
@ -0,0 +1,57 @@ |
|||||
|
package com.epmet.excel; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
import lombok.Getter; |
||||
|
import lombok.Setter; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2022/1/5 10:00 上午 |
||||
|
* @DESC |
||||
|
*/ |
||||
|
@Getter |
||||
|
@Setter |
||||
|
@EqualsAndHashCode |
||||
|
public class PcWorkListExport { |
||||
|
|
||||
|
@ExcelProperty("事项名称") |
||||
|
private String title; |
||||
|
|
||||
|
@ExcelProperty("事项类型码") |
||||
|
private String workTypeCode; |
||||
|
|
||||
|
@ExcelProperty("事项类型名称") |
||||
|
private String workTypeName; |
||||
|
|
||||
|
@ExcelProperty("有无异常") |
||||
|
private String isNormal; |
||||
|
|
||||
|
@ExcelProperty("发生地点") |
||||
|
private String happenAddress; |
||||
|
|
||||
|
@ExcelProperty("发生时间") |
||||
|
private String happenTime; |
||||
|
|
||||
|
@ExcelProperty("人员ID") |
||||
|
private String staffId; |
||||
|
|
||||
|
@ExcelProperty("人员姓名") |
||||
|
private String staffName; |
||||
|
|
||||
|
@ExcelProperty("网格ID") |
||||
|
private String gridId; |
||||
|
|
||||
|
@ExcelProperty("网格名字") |
||||
|
private String gridName; |
||||
|
|
||||
|
@ExcelProperty("提交日期") |
||||
|
private String createdTime; |
||||
|
|
||||
|
@ExcelProperty("工作内容") |
||||
|
private String workContent; |
||||
|
} |
Loading…
Reference in new issue