Newer
Older
vue3-front / src / views / business / lab / reportOnCredentials / report_interface.ts
MrTan on 15 Feb 2023 1 KB 修改项目代码爆红
export interface IFromListInfoType {
  templateName: string // 证书报告模板名称
  signName: string // 电子签章名称
  approvalSignName: string // 认可标准专用章
  originalRecordName: string // 原始记录名称
  calibrationPlace: string // 校验地点
  temperature: string // 温度
  humidity: string // 相对湿度
  sampleNo: string // 样品编号
  sampleName: string // 样品名称
  leaveNo: string // 出厂编号
  customerId: string // 委托方代码
  customerName: string // 委托方名称
  customerPhone: string // 委托方电话
  customerLocation: string // 委托方地址
  censorshipUser: string // 送检人
  phone: string // 送检人联系方式
  expectedDeliveryTime: string // 预计送达时间
  expectedCompletionTime: string // 预计检完时间
  verificationItems: string // 检定项目
  model: string // 型号
  taskId: string
  manufacturer: string // 生产厂家
  applyEquipmentList: IApplyEquipmentList[]
  fixedAssetsList: IFixedAssetsList[]
  fileList: IFileList[]
}

export interface IApplyEquipmentList {
  equipmentName: string // 设备名称
  equipmentNo: string // 设备编号
  modelNo: string // 型号
  mesureResult: string
  validDate: string // 到期时间
  id: string // 主键
  equipmentId: string // 设备id
  standardApplyId: string
}

export interface IFixedAssetsList {
  equipmentName: string // 设备名称
  equipmentNo: string // 设备编号
  modelNo: string // 型号
  mesureResult: string
  validDate: string // 到期时间
  id: string // 主键
  equipmentId: string // 设备id
  standardApplyId: string
}

export interface IFileList {
  fileName: string
  choose: boolean
}