Newer
Older
sensorHubPlusFront / src / views / basic / product / product-info.ts
liyaguang 9 days ago 1 KB 页面搭建
// 列表查询参数接口
export interface IListQuery {
  ids?: [] // id列表 导出用
  productNo?: string
  deviceType?: string
  productName: string // 产品名
  beginTime: string // 创建时间-开始
  endTime: string // 创建时间-结束
  offset: number
  limit: number
  sort?: string
  order?: string
  productType?: string
  model?: string

  encipherType?: string
  accessType?: string
}

export interface IProductInfo {
  id: string // id
  productNo?: string // 产品编号
  name: string // 产品名称
  accessType?: string // 接入类型
  accessTypeName?: string
  powerType?: string // 供电方式
  powerTypeName?: string
  encipherType?: string // 加密类型
  encipherTypeName?: string
  communicationProtocol?: string // 协议类型
  communicationProtocolName?: string
  productType?: string // 产品类别
  productTypeName?: string
  deviceType?: string // 设备类型
  deviceTypeName?: string
  model?: string // 型号
  offlineRule?: string // 离线规则
  description?: string // 产品描述
  owners?: string // 产品负责人
  createUserId?: string
  createUserName?: string
  createTime?: string
}