This commit is contained in:
caozehui
2025-01-06 14:50:36 +08:00
parent 9eac101794
commit 336ee843cc
4 changed files with 178 additions and 281 deletions

View File

@@ -34,9 +34,9 @@ export namespace CheckData {
// 第几次谐波
//num: number | null,
//符合、不符合
isData: number,
isData?: number,
//最大误差值
radius: string,
radius?: string,
}
/**
@@ -45,16 +45,16 @@ export namespace CheckData {
export interface CheckResult {
aStd?: number,
aData?: number,
aError?: number,
aError?: string,
bStd?: number,
bData?: number,
bError?: number,
bError?: string,
cStd?: number,
cData?: number,
cError?: number,
cError?: string,
tStd?: number,
tData?: number,
tError?: number,
tError?: string,
//最大误差值
maxError?: string,