新火炬后端单体项目初始化代码
Houjie
3 天以前 088e145409aa4f3a4e4fb355843d2e6a6c02f8cb
src/main/java/org/jeecg/modules/eam/dto/MaintenanceStandardImport.java
@@ -8,12 +8,46 @@
@Data
public class MaintenanceStandardImport implements Serializable {
    @Excel(name = "图号", width = 15)
    private Integer itemCode;
    @Excel(name = "点检项目", width = 15)
    private String itemName;
    @Excel(name = "点检部位", width = 15)
//    @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;
    @Excel(name = "NO", orderNum = "1")
    private String itemCode;
    @Excel(name = "点检条件", orderNum = "2")
    private String condition;
    @Excel(name = "部位名称", orderNum = "3")
    private String itemPart;
    @Excel(name = "点检要求", width = 15)
    @Excel(name = "点检内容", orderNum = "4")
    private String itemName;
    @Excel(name = "点检方法", orderNum = "5")
    private String subItemName;
    @Excel(name = "基准", orderNum = "6")
    private String itemDemand;
    @Excel(name = "异常处理基准", orderNum = "7")
    private String abnormal;
    @Excel(name = "周期", orderNum = "8")
    private String period;
}