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 = "NO", width = 15)
|
private String itemCode;
|
|
@Excel(name = "部位名称", width = 15)
|
private String itemName;
|
|
@Excel(name = "点检内容", width = 15)
|
private String subItemName;
|
|
@Excel(name = "点检方法", width = 15)
|
private String itemPart;
|
|
@Excel(name = "基准", width = 15)
|
private String itemDemand;
|
}
|