1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| import type { SummaryAnswerType } from '../types';
|
| export type MonitorRow = {
| id: string;
| title: string;
| };
|
| export type MonitorValue = {
| OTYPE: string;
| ONAME: string;
| OTITLE: string;
| OTIME: string;
| ZD: number;
| YL: number;
| };
| export type Monitor = {
| title:string;
| type: SummaryAnswerType.DeviceLastValue;
| rows: MonitorRow[];
| values: MonitorValue[];
| };
|
|