Lius
2023-10-30 ff9dc3f8220dfeb9acddd2f86c28718001e70314
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
package org.jeecg.modules.eam.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.experimental.Accessors;
import org.jeecgframework.poi.excel.annotation.Excel;
 
import java.math.BigDecimal;
 
 
@Data
@Accessors(chain = true)
public class InspectionProjectImportVo {
 
    @Excel(name= "点检项目分类")
    private String inspectionProjectCategoryId;
 
    @Excel(name="点检项目编码")
    private String num;
 
    @Excel(name = "点检项目名称")
    private String name;
 
    @Excel(name = "计量单位",dictTable = "mom_base_unit", dicCode = "id", dicText = "name")
    private String unitId;
 
    @Excel(name = "检验值类型",dicCode = "test_value_type")
    private String testValueType;
 
    @Excel(name = "点检方法",dicCode = "inspection_method")
    private String inspectionMethod;
 
    @Excel(name = "检测标准")
    private String detectionStandard;
 
    @Excel(name = "点检工具")
    private String inspectionTool;
 
    @Excel(name = "名义值")
    private BigDecimal surfaceValue;
 
    @Excel(name = "上偏差")
    private BigDecimal upValue;
 
    @Excel(name = "下偏差")
    private BigDecimal downValue;
 
    @Excel(name = "备注")
    private String remark;
 
}