Newer
Older
sensorHubPlusFront / src / views / basic / device / device-info.ts
// 列表查询参数接口
export interface IListQuery {
  groupId: string // 分组
  productId?: string
  devcode: string
  imei: string
  deviceType: string
  status?: string
  beginCell?: string // 电量
  endCell?: string //
  offset?: number
  limit?: number
  sort?: string
  order?: string
}

export interface IDeviceInfo {
  id: string
  groupId: string
  devcode: string
  deviceName?: string
  deviceType: string
  deviceTypeName?: string
  status?: string
  statusName?: string
  cell?: string
  imei: string
  iccid: string
  model: string
  modelName?: string
  productId: string
  productName?: string
  encipherType: string
  encipherTypeName?: string
  createTime: string
  createUserId: string
  createUserName?: string
  dataValue?: string
  logtime?: string
}

export interface IConfigListQuery {
  devcode: string // 设备编号
  configType: string // 配置类型
  status: string // 配置状态
  beginTime: string // 操作时间-开始
  endTime: string // 操作时间-结束
  offset?: number
  limit?: number
  sort?: string
  order?: string
}