Browse Source

DebugSN表添加DeltaEValue

JeffWang 3 years ago
parent
commit
5bac398730
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Source/OGCAssistTool/OGCAssistTool/TableInfo.h

+ 2 - 0
Source/OGCAssistTool/OGCAssistTool/TableInfo.h

@@ -20,6 +20,7 @@ typedef struct __TB_SN__
 	std::string strFinishedTime;
 	int nElapsed;
 	int nTestResult;
+	DOUBLE dDeltaEValue;			// 标准值;多加这个变量为防止离线模式反复变化该值;
 	DOUBLE dDeltaAVGEValue;
 	std::string strDetails;
 }TB_SN, *LPTB_SN;
@@ -42,6 +43,7 @@ FinishTime DATETIME NOT NULL, \
 ElapsedTime INTEGER NOT NULL,\
 TestResult INTEGER NOT NULL, \
 DEAvgValue REAL NOT NULL, \
+DEValue REAL NOT NULL, \
 Outcome TEXT NOT NULL, \
 PRIMARY KEY(SN));"