Newer
Older
SpaceIntegration_front / src / views / device / deviceMaintenance / checkList_interface.ts
MrTan on 2 Feb 2023 796 bytes 业务管理-工作台
export interface IlistQuery {
  checkDate: string
  checkName: string
  checkNo: string
  logType?: string
  offset: number
  limit: number
}
export interface ISupplier {
  checkDate: 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
}