package com.yuanchu.mom.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
@Data
|
public class IncidentReportExport {
|
@ExcelProperty(value = "流程编号")
|
private String processNumber;
|
|
@ExcelProperty(value = "设备名称")
|
private String deviceName;
|
|
@ExcelProperty(value = "管理编号")
|
private String managementNumber;
|
|
@ExcelProperty(value = "序列号")
|
private String serialNumber;
|
|
@ExcelProperty(value = "提交者")
|
private String submitUser;
|
|
@ExcelProperty(value = "提交日期")
|
private String createTime;
|
|
@ExcelProperty(value = "当前状态")
|
private String saveState;
|
|
@ExcelProperty("当前负责人")
|
private String currentResponsible;
|
}
|