package com.ruoyi.inspect.dto;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.converters.localdate.LocalDateStringConverter;
|
import lombok.Data;
|
|
import java.time.LocalDate;
|
|
@Data
|
public class ExcelChecked {
|
@ExcelProperty("委托编号")
|
private String entrustCode;
|
|
@ExcelProperty("样品编号")
|
private String sampleCode;
|
|
@ExcelProperty("套管色标")
|
private String bushColor;
|
|
@ExcelProperty("光纤带编号")
|
private String code;
|
|
@ExcelProperty("光纤色标")
|
private String color;
|
|
@ExcelProperty("检验项")
|
private String inspectionItem;
|
|
@ExcelProperty("检验子项")
|
private String inspectionItemSubclass;
|
|
@ExcelProperty("试验要求")
|
private String tell;
|
|
@ExcelProperty("检验值")
|
private String lastValue;
|
|
@ExcelProperty("结果判定")
|
private String insResult;
|
|
@ExcelProperty("单位")
|
private String unit;
|
|
@ExcelProperty("检验人")
|
private String checkName;
|
|
@ExcelProperty("样品名称")
|
private String sample;
|
|
@ExcelProperty("样品型号")
|
private String model;
|
|
@ExcelProperty("下单人")
|
private String customName;
|
|
@ExcelProperty(value = "下单时间",converter = LocalDateStringConverter.class)
|
private LocalDate createTime;
|
|
}
|