Newer
Older
vue3-front / src / views / business / schedule / interchange / interchange_interface.ts
dutingting on 2 Feb 2023 1 KB 设备收发列表完成
export interface IListQuery {
  sampleNo: string // 样品编号
  sampleName: string // 样品名称
  orderCode: string // 委托书编号
  customerId: string // 委托方代码
  startTime: string // 预计送达开始时间
  endTime: string // 预计送达结束时间
  isUrgent: string // 是否加急
  sampleAttr: string // 样品属性
  type: string // 类型(buttonBox)
  offset: number
  limit: number
}

export interface IinterchangeListTaking {
  id: string
  sampleNo: string // 样品编号
  sampleName: string // 样品名称
  sampleModel: string // 型号
  evaluationName: string // 出厂编号
  orderCode: string // 委托书编号
  customerId: string // 委托方代码
  customerName: string // 委托方名称
  deliverer: string // 送检人
  isUrgent: string // 是否加急
  sampleAttr: string // 样品属性
  planDeliverTime: string // 预计送达时间
  deliverTime: string // 实际送达时间
  requireOverTime: string // 要求检完时间
  currentCertifications: string | number // 已出具证书总数
  requireCertifications: string | number // 应出具证书总数
  currentDeliver: string // 当前检定环节
}