Newer
Older
xc-business-system / src / views / equipement / resume / lend / lend-interface.ts
export interface IListQuery {
  approvalStatus: string // 审批状态类型code
  borrowDateEnd: string // 借用日期开始
  borrowDateStart: string // 借用日期开始
  borrower: string // 借用人
  equipmentName: string // 设备名称
  formId: string
  registerNo: string // 登记表编号

  labCode: string // 实验室
  groupCode: string // 部门、部门
  model: string //		规格型号
  manufactureNo: string //		出厂编号
  manufacturer: string // 生产厂家

  limit: number
  offset: number
}

export interface IList {
  id: string
  registerNo: string // 登记表编号
  registerName: string // 登记表名称
  equipmentName: string // 设备名称
  equipmentNo: string // 统一编号
  model: string // 型号
  borrower: string // 借用人
  borrowDate: string // 借用时间
  processId: string
  taskId: string
  approvalStatusName: string // 审批状况

  returnStatus: string // 归还状态
}

export interface IForm {
  groupCode: string // 部门
  labCode: string // 实验室
  registerNo: string // 登记表编号
  registerName: string // 登记表名称
  createUserId: string // 创建人id
  createUserName: string // 创建人
  createTime: string // 创建时间
  equipmentId: string // 设备id
  equipmentName: string // 设备名称
  equipmentNo: string // 统一编号
  model: string // 型号
  manufacturer: string // 生产厂家
  borrowCompany: string // 借用单位
  borrower: string // 借用人
  borrowDate: string // 借用日期
  borrowDeadline: string // 借用期限
  equipmentPerformanceStatus: string // 设备性能状态
}

// 主附件信息列表
export interface IAttachmentList {
  id: string
  name: string // 名称
  information: string // 信息
  location: string // 位置
  logId: string // 开箱验收id
}