export interface IList { dataId: string // 核查数据管理基础信息表id id: string // id checkType: string // 核查类型(字典value) dataType: string editable?: boolean // 是否可编辑 params?: string // 核查项目(字典value) checkPoint?: string // 核查点/快沿(上升时间)(字典value) unit?: string // 核查点单位/快沿单位(上升时间)(字典value) averageValue?: string // 平均值 standardDeviation?: string // 重复性Sn(x) referencePoint?: number // 参考点 testValueOne?: string // 测量值1/测量值(上升时间) testValueTwo?: string // 测量值2(示值) testValueThree?: string // 测量值3(示值) testValueFour?: string // 测量值4(示值) testValueFive?: string // 测量值5(示值) testValueSix?: string // 测量值6(本次示值) testValueSeven?: string // 测量值7 testValueEight?: string // 测量值8 testValueNine?: string // 测量值9 testValueTen?: string // 测量值10 convertVoltageOne?: string // 转换为电压值1 convertVoltageTwo?: string // 转换为电压值2 convertVoltageThree?: string // 转换为电压值3 convertVoltageFour?: string // 转换为电压值4 convertVoltageFive?: string // 转换为电压值5 convertVoltageSix?: string // 转换为电压值6 convertVoltageSeven?: string // 转换为电压值7 convertVoltageEight?: string // 转换为电压值8 convertVoltageNine?: string // 转换为电压值9 convertVoltageTen?: string // 转换为电压值10 flatnessOne?: string // 平坦度1/% flatnessTwo?: string // 平坦度2/% flatnessThree?: string // 平坦度3/% flatnessFour?: string // 平坦度4/% flatnessFive?: string // 平坦度5/% flatnessSix?: string // 平坦度6/% flatnessSeven?: string // 平坦度7/% flatnessEight?: string // 平坦度8/% flatnessNine?: string // 平坦度9/% flatnessTen?: string // 平坦度10/% testValueUnit?: string // 测量值单位 convertVoltageUnit?: string // 转换为电压值单位 manufactureNo?: string // 探头出厂编号 equipmentName?: string // 探头设备名称 model?: string // 探头规格型号 conclusion?: number // 结论(1/0) maximumErrorAbsolute?: string // 最大允许误差的绝对值 maximumErrorAbsoluteUnit?: string // 最大允许误差的绝对值单位 qualified?: number // 稳定性考核是否合格 stability?: string // 稳定性 technicalIndex?: string // 技术指标 technicalIndexSymbol?: string // 技术指标前符号 technicalIndexUnit?: string // 技术指标单位 typeValue?: string // 类型 testValueOneDate?: string // 核查读数1日期(稳定性) testValueTwoDate?: string // 核查读数2日期(稳定性) testValueThreeDate?: string // 核查读数3日期(稳定性) testValueFourDate?: string // 核查读数4日期(稳定性) testValueFiveDate?: string // 核查读数5日期(稳定性) testValueSixDate?: string // 核查读数6日期(稳定性) testValueSevenDate?: string // 核查读数7日期(稳定性) testValueEightDate?: string // 核查读数8日期(稳定性) testValueNineDate?: string // 核查读数9日期(稳定性) testValueTenDate?: string // 核查读数10日期(稳定性) }