Newer
Older
smart-metering-front / src / views / device / borrow / borrow-interface.ts
bairujie on 21 Feb 2023 921 bytes 计量文件页面调整接口添加调试
// 设备借用申请查询参数类型
export interface searchType {
  applyName: string // 申请名称
  applyNo: string // 申请编号
  applyPerson: string // 	申请人
  applyUnit: string // 	申请单位
  approvalStatus?: string // 	审批状态
  createUser?: string // 	创建人
  processResult?: string // 	处置结果
  applyType: string // 申请类型
  time: string // 	申请日期
  limit?: number
  offset?: number
  ids?: string[]
  formId?: string
}
// 借用设备类型
export interface borrowDeviceType {
  createUser?: string // 当前用户id
  equipmentId: string // 设备id
  equipmentNo: string // 设备编号
  modelNo: string // 型号
  measureRange: string // 测量范围
  useDept: string // 使用部门
  usePerson: string // 使用人
  validDate: string // 有效日期
  approvalStatusName: string
  applyName: string
  edit?: boolean
  equipmentName?: string
  id?: string
}