Newer
Older
vue3-front / src / views / device / deviceMaintenance / checkList_interface.ts
MrTan on 31 Jan 2023 803 bytes 标准装置申请与检修列表
export interface IlistQuery {
  checkDate: string
  checkName: string
  checkNo: string
  logType?: string
  offset: number
  limit: number
}
export interface ISupplier {
  checkDate: null | string
  checkName: string
  checkNo: string
  checkPerson: string
  checkResult: string
  checkResultName: string
  createTime: null | string
  createUser: string
  createUserName: string
  fileList: [
    {
      checkId: string
      createTime: null | string
      createUser: string
      fileName: string
      id: string
      isDel: null | string
      minioFileName: string
      remark: string
      updateTime: string
    },
  ]
  id: string
  isDel: null | string
  managerPoinLocation: string
  remark: string
  updateTime: null | string
}

export interface IOptions {
  id: string
  name: string
}