Newer
Older
xc-business-system / src / views / resource / environment / resistance / resistance-interface.ts
tanyue on 5 Dec 2023 671 bytes 20231205 实验室接地电阻记录
export interface IListQuery {
  testLocation: string
  testTimeStart: string
  testTimeEnd: string
  ids?: []
  approvalStatus: string
  formId: string
  offset: number
  limit: number
  sort?: string
  order?: string
}

export interface IResistanceRecord {
  id: string
  recordNo: string
  recordName: string
  resistanceIndex: string
  resistanceTestValue: string
  testBasis: string
  testLocation: string
  testTime: string
  testUseEquipment: string
  conclusion: string
  approvalStatus?: string
  approvalStatusName?: string
  processId?: string
  taskId?: string
  createUserId?: string
  createUserName?: string
  createTime?: string
  decisionItem?: number
}