2024-12-18 18:53:55 +08:00
|
|
|
|
export interface DataCheck{
|
|
|
|
|
|
testScriptName: string,
|
|
|
|
|
|
errorSysName: string,
|
|
|
|
|
|
dataRule: string,
|
|
|
|
|
|
deviceName: string,
|
|
|
|
|
|
monitorIdx: string,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-12-18 15:56:59 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 用于定义 查看(设备)通道检测结果 类型
|
|
|
|
|
|
*/
|
|
|
|
|
|
export interface CheckResult {
|
|
|
|
|
|
chnNum: string,
|
|
|
|
|
|
standardValue: number,
|
|
|
|
|
|
L1: number,
|
|
|
|
|
|
L1_errValue: number,
|
|
|
|
|
|
L2: number,
|
|
|
|
|
|
L2_errValue: number,
|
|
|
|
|
|
L3: number,
|
|
|
|
|
|
L3_errValue: number,
|
|
|
|
|
|
maxErrVaule: number,
|
|
|
|
|
|
result: string,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 用于定义 具体通道的原始数据类型
|
|
|
|
|
|
*/
|
|
|
|
|
|
export interface RawDataItem {
|
|
|
|
|
|
updateTime: string,
|
|
|
|
|
|
L1: number,
|
|
|
|
|
|
L2: number,
|
|
|
|
|
|
L3: number
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 用于定义 (设备)通道的原始数据
|
|
|
|
|
|
*/
|
|
|
|
|
|
export interface RawData {
|
|
|
|
|
|
chnNum: string,
|
|
|
|
|
|
rawDataItems: RawDataItem[]
|
2024-12-18 18:53:55 +08:00
|
|
|
|
}
|