Newer
Older
CorrOLFront / src / views / basic / locate / locate-info.ts
tanyue on 26 Mar 2024 1 KB 20240326 报警规则功能调试
// 列表查询参数接口
export interface IListQuery {
  deptid?: string
  keywords: string // 点位编号
  offset?: number
  limit?: number
  sort?: string
  order?: string
}

export interface ILocateInfo {
  id: number | string
  wellCode: string
  wellName: string
  wellType: string
  wellTypeName?: string
  area?: string
  bfzt?: string
  coordinateX?: string
  coordinateY?: string
  deep?: string
  deptid: string
  deptName?: string
  latBaidu?: string
  latGaode?: string
  lngBaidu?: string
  lngGaode?: string
  notes?: string
  photos?: string
  position: string
  responsibleDept?: string
  responsibleDeptName?: string
  staff?: string
  tel?: string
  ts?: string
}

export interface ILocateSelect {
  name: string
  value: string
  position?: string
}

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