Newer
Older
laserPTZFrontV2.0 / src / views / station / interface.ts
wangxitong on 22 May 2023 313 bytes first commit
// 资源类型
export interface IStationTypeInfo {
  name: string
  value: string
}

// 资源
export interface IStationInfo {
  id?: string | number // id
  stationName: string // 场站名
  deptId: string | number // 组织机构ID
  deptName?: string // 权属单位名称
  time?: string // 修改时间
}