新火炬后端单体项目初始化代码
zhangherong
3 天以前 53577ae0fcba9342b22ad1758303aa61409160d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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;
 
 
 
 
    @Excel(name = "NO")
    private String itemCode;
 
    @Excel(name = "点检条件")
    private String condition;
 
    @Excel(name = "部位名称")
    private String itemPart;
 
    @Excel(name = "点检内容")
    private String itemName;
 
    @Excel(name = "点检方法")
    private String subItemName;
 
    @Excel(name = "基准")
    private String itemDemand;
 
    @Excel(name = "异常处理基准")
    private String abnormal;
 
    @Excel(name = "周期")
    private String period;
 
}