package org.jeecg.modules.eam.dto; import lombok.Data; import org.jeecgframework.poi.excel.annotation.Excel; import java.io.Serializable; @Data public class SecondMaintenanceStandardImport implements Serializable { @Excel(name = "序号", width = 15) private Integer itemCode; @Excel(name = "部位", width = 15) private String itemPart; @Excel(name = "保养内容", width = 15) private String itemName; @Excel(name = "保养要求", width = 15) private String itemDemand; }