Newer
Older
vue3-front / src / views / business / schedule / certPrint / cert-interface.ts
Stephanie on 9 Feb 2023 1 KB feat<*>: 证书打印列表
// 证书打印查询
export interface ICertPrintSearch {
  certificationReportCode: string // 证书编号
  orderNo: string // 委托书编号
  customerName: string // 委托方名称
  sampleNo: string // 样品编号
  sampleName: string // 样品名称
  certificateReportType: string // 证书类型
  printNum: number | '' // 打印次数 -未打印和全部用
  approvalStatus: string // 审批状态-审批查询用
  formId: string // 审批用formId
  offset: number
  limit: number
}

// 证书打印列表
export interface ICerPrintList {
  certificationId: string // 证书id
  certificationReportCode: string // 证书编号
  certificationReportName: string // 证书名称
  certificateReportType: string // 证书类型
  certificateReportTypeName: string // 证书类型
  sampleNo: string // 样品编号
  sampleName: string // 样品名称
  sampleModel: string // 型号
  manufacturingNo: string // 出厂编号
  orderId: string // 委托书id
  orderNo: string // 委托书编号
  customerNo: string // 客户编号
  customerName: string // 客户名称
  measureCatogory: string // 检校类别
  measureCatogoryName: string // 检校类别
  crateUserName: string // 检定人员
  printNum: string | number// 打印状态-打印次数
  printStatus: string // 可打印状态 0不可打印1可打印
  createTime: string // 生成时间
  approvalStatus?: string // 审批状态
  approvalStatusName?: string // 审批状态
}