Newer
Older
xc-business-system / src / views / business / taskMeasure / measureData / components / eighth / eighth-interface.ts
// 检定项数据表格
export interface IDetailMeasureList {
  id: string
  dataId: string //		检定数据管理基础信息表id(新增不用传)
  dataType: string //		检定数据类型(一个检定数据中区分多个表格)(字典code)

  measureSequence: string //		测量序列
  aOne: string // A1(mr1)(单位固定g,不存单位) /中心A1(mr1) /A(mr1)
  bOne: string // B1(mt1)(单位固定g,不存单位) /偏载点B1(mt1) /A+ms(mt1)
  aTwo: string // A2(mr2)(单位固定g,不存单位) /中心A2(mr2) /A(mr2)
  bTwo: string // B2(mt2)(单位固定g) /偏载点B2(mt2) /A+ms(mt2)
  deltaM: string //		Δmi(单位固定mg,不存单位)
  deltaMAverage: string //		Δm平均值(单位固定mg,不存单位)
  sValue: string // s(单位固定mg,不存单位)
  uRValue: string // UR(单位固定mg,不存单位)
  deltaMThrow: string //		Δmi'(单位固定mg,不存单位)
  deltaMThrowMax: string //		Δmi'最大值(单位固定mg,不存单位)
  maxOffsetLoadPoint: string //		最大偏载位置点
  uEValue: string // UE(单位固定mg,不存单位)
  mreduceDeltaM: string // ms-Δm(单位固定mg,不存单位)
  uSValue: string // US(单位固定mg,不存单位)

  ptOne: string //		实验载荷Pt1
  ptOneUnit: string //		实验载荷Pt1单位
  aEquipmentId: string // 载荷点A设备id
  aDeviceNumber: undefined // 载荷点A器号
  aNominalQualityValue: undefined // 载荷点A标称质量值(单位固定g,不存单位)
  aConvertQualityCorrectValue: undefined // 载荷点A折算质量修正值(单位固定mg,不存单位)
  aManufactureNo: string // 载荷点A出厂编号

  bEquipmentId: string // 载荷点B设备id
  bDeviceNumber: undefined // 载荷点B器号
  bNominalQualityValue: undefined // 载荷点B标称质量值(单位固定g,不存单位)
  bConvertQualityCorrectValue: undefined // 载荷点B折算质量修正值(单位固定mg,不存单位)
  bManufactureNo: string // 载荷点B出厂编号

  ptTwo: string // 实验载荷Pt2
  ptTwoUnit: string // 实验载荷Pt2单位

  scalePlateForm: string // 秤量盘形式
  mSValue: undefined // 标准小砝码ms
  mpesValue: undefined // |MPEs|
  uBValue: undefined // Ub

  actualDivisionValue: string //		实际分度值d,该参数在结果处理表中每行都要传
  actualDivisionValueUnit: string //		实际分度值d单位(固定为mg),该参数在结果处理表中每行都要传
  loadPointASValue: string //		pt1的s(单位固定mg,不存单位)(当计算接口检定项目为偏载误差/局部示值误差时使用,该参数在结果处理表中每行都要传)
  loadPointBSValue: string //		pt2的s(单位固定mg,不存单位)(当计算接口检定项目为偏载误差误差时使用,该参数在结果处理表中每行都要传)
}