// 列表查询参数接口 export interface IListQuery { keywords: string beginTime: string endTime: string offset?: number limit?: number sort?: string order?: string } export interface IDeviceInfo { id: string devcode: string deviceName?: string deviceType: string deviceTypeName?: string onlineState?: string onlineStateName?: string watchType: string communication?: string wellId?: string wellCode?: string deptid?: string deptName?: string position?: string cell?: string imei?: string iccid?: string version: string modelName?: string installDate?: string latestData?: string latestTime?: string } export interface IConfigListQuery { devcode: string // 设备编号 configType: string // 配置类型 status: string // 配置状态 beginTime: string // 操作时间-开始 endTime: string // 操作时间-结束 offset?: number limit?: number sort?: string order?: string } export interface IDeviceType { name: string value: string deviceType?: string }