Newer
Older
laserPTZFrontV2.0 / src / views / cruiselog / interface.ts
wangxitong on 22 May 2023 428 bytes first commit
// 设备类型
export interface IdeviceList {
  name: string
  value: string
}

// 查询参数
export interface IQuery {
  stationId: string
  startTime: string
  endTime: string
}

// 巡检日志列表
export interface ILogInfo {
  monitorName: string	// 设备名称
  stationName: string	// 场站名
  direction: number // 	方位角
  pitch: number	// 俯仰角
  gas: number	// 浓度
  time: string	 // 创建时间
}