Lius
2025-06-10 96be94fc3c33c49e15b538bebbea455e839a7a7b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.jeecg.modules.eam.dto;
 
import lombok.Data;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.io.Serializable;
 
@Data
public class ThirdMaintenanceStandardImport 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;
    @Excel(name = "保养要求", width = 15)
    private String itemDemandAlias;
    @Excel(name = "检查方法", width = 15)
    private String checkMethod;
}