Newer
Older
vue3-front / src / views / business / schedule / interchangeReceipt / receiptList-interface.ts
// 查询参数
export interface IListQuery {
  interchangeCode: string // 交接单编号
  customerNo: string // 委托方代码
  customerName: string // 委托方名称
  reciever: string // 接收人
  deliverer: string // 送样人
  startTime: string // 交接开始时间
  endTime: string // 交接结束时间
  offset: number
  limit: number
}

// 表格
export interface IReceiptList {
  id: string
  interchangeCode: string // 交接单编号
  customerNo: string // 委托方代码
  customerName: string // 委托方名称
  reciever: string // 接收人
  deliverer: string // 送样人
  deliverTime: string // 交接时间
  remark: string // 备注
}