| | |
| | | import { Column } from '@business/entity/grid'; |
| | | import { AlarmStyle, TimeUnits, AreaRange } from '@business/enum/types.enum'; |
| | | import { AlarmStyle, TimeUnits, AreaRange, DeviceDimension } from '@business/enum/types.enum'; |
| | | |
| | | |
| | | export interface AreaNames { |
| | |
| | | version?: Column|any; |
| | | } |
| | | |
| | | // 监控点 |
| | | // 监控站点 |
| | | export interface MonitorPoint { |
| | | address?: any|Column; |
| | | areaCode?: any|Column; |
| | |
| | | mac?: any|Column; |
| | | monitorPoint?: any|Column; |
| | | monitorPointId?: any|Column; |
| | | professionId?: any|Column; |
| | | name?: any|Column; |
| | | operateUser?: any|Column; |
| | | operateUserId?: any|Column; |
| | |
| | | areaRange?: AreaRange; |
| | | areaRangeId?: number; |
| | | timeUnits?: TimeUnits; |
| | | deviceDimension?: DeviceDimension; |
| | | dimensionValue?: any; |
| | | } |
| | | |
| | | export interface PairData { |