package com.ruoyi.inspect.dto;
|
|
import com.alibaba.excel.annotation.ExcelIgnore;
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import lombok.Data;
|
|
import java.time.LocalDate;
|
|
@Data
|
public class TemperatureCycling {
|
@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("衰减系数1310")
|
private String attenuationCoefficient1310;
|
|
@ExcelProperty("衰减差1")
|
private String attenuationDifference1;
|
|
@ExcelProperty("衰减系数1550")
|
private String attenuationCoefficient1550;
|
|
@ExcelProperty("衰减差2")
|
private String attenuationDifference2;
|
|
@ExcelProperty("衰减系数1625")
|
private String attenuationCoefficient1625;
|
|
@ExcelProperty("衰减差3")
|
private String attenuationDifference3;
|
|
@ExcelProperty("衰减1383")
|
private String attenuationCoefficient1383;
|
|
@ExcelProperty("衰减差4")
|
private String attenuationDifference4;
|
|
@ExcelProperty("衰减1490")
|
private String attenuationCoefficient1490;
|
|
@ExcelProperty("衰减差5")
|
private String attenuationDifference5;
|
|
|
@ExcelProperty("衰减差Max")
|
private String attenuationDifferenceMax;
|
|
@ExcelProperty("是否合格")
|
private String insResult;
|
|
|
@ExcelProperty("检验人")
|
private String checkName;
|
|
@ExcelProperty(value = "检测时间")
|
private LocalDate insTime;
|
|
@TableField(exist = false)
|
@ExcelIgnore
|
private LocalDate sendTime;
|
|
@TableField(exist = false)
|
@ExcelIgnore
|
private String sample;
|
}
|