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;
|
|
}
|