// 设备借用申请查询参数类型 export interface searchType { applyName: string // 申请名称 applyNo: string // 申请编号 applyPerson: string // 申请人 applyUnit: string // 申请单位 approvalStatus?: string // 审批状态 createUser: string // 创建人 processResult: string // 处置结果 time: string // 申请日期 limit?: number offset?: number } // 借用设备类型 export interface borrowDeviceType { createUser?: string // 当前用户id equipmentId: string // 设备id equipmentNo: string // 设备编号 modelNo: string // 型号 measureRange: string // 测量范围 useDept: string // 使用部门 usePerson: string // 使用人 validDate: string // 有效日期 edit?: boolean equipmentName?: string }