Newer
Older
sensorHubPlusFront / src / views / data / query / data-query.ts
tanyue on 11 Dec 2023 709 bytes 20231211 数据管理初版
// 列表查询参数接口
export interface IListQuery {
  groupId: string // 分组
  devcode: string
  deviceType: string
  beginTime?: string // 电量
  endTime?: 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
}