package org.jeecg.modules.eam.dto;
|
|
import lombok.Data;
|
import org.jeecgframework.poi.excel.annotation.Excel;
|
|
import java.io.Serializable;
|
|
@Data
|
public class MaintenanceStandardImport implements Serializable {
|
|
@Excel(name = "图号", width = 15)
|
private Integer itemCode;
|
@Excel(name = "点检项目", width = 15)
|
private String itemName;
|
@Excel(name = "点检部位", width = 15)
|
private String itemPart;
|
@Excel(name = "点检内容", width = 15)
|
private String itemContent;
|
@Excel(name = "点检要求", width = 15)
|
private String itemDemand;
|
}
|