package com.ruoyi.inspect.excel;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.alibaba.excel.converters.localdate.LocalDateStringConverter;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
import java.io.Serializable;
|
import java.time.LocalDate;
|
|
/**
|
* 光纤带状几何参数
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class FiberRibboGeometricalParameterExcelData implements Serializable {
|
|
@ExcelProperty("委托编号")
|
private String entrustCode;
|
|
@ExcelProperty("样品编号")
|
private String sampleCode;
|
|
@ExcelProperty("套管色标")
|
private String bushColor;
|
|
@ExcelProperty("光纤带编号")
|
private String code;
|
|
@ExcelProperty("检验项目分类")
|
private String inspectionItemType;
|
|
@ExcelProperty("检验人")
|
private String inspector;
|
|
@ExcelProperty(value = "检验时间",converter = LocalDateStringConverter.class)
|
private LocalDate insTime;
|
|
@ExcelProperty("光纤带厚度A端")
|
private String thicknessA;
|
|
@ExcelProperty("光纤带厚度B端")
|
private String thicknessB;
|
|
@ExcelProperty("光纤带宽度A端")
|
private String widthA;
|
|
@ExcelProperty("光纤带宽度B端")
|
private String widthB;
|
|
@ExcelProperty("两侧光纤水平间距A端")
|
private String sideSpacingA;
|
|
@ExcelProperty("两侧光纤水平间距B端")
|
private String sideSpacingB;
|
|
@ExcelProperty("平整度A端")
|
private String evennessA;
|
|
@ExcelProperty("平整度B端")
|
private String evennessB;
|
|
@ExcelProperty("相邻光纤水平间距A端")
|
private String adjacentSpacingA;
|
|
@ExcelProperty("相邻光纤水平间距B端")
|
private String adjacentSpacingB;
|
|
}
|