zhangherong
10 天以前 1337e62c126ddb7eb1088c4d81a721cf7cc2d7c4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 itemDemand;
}