|
@@ -69,7 +69,7 @@ struct AlarmConditionMsgContext
|
|
|
{
|
|
|
public:
|
|
|
int currentAlarmConditionKey1;
|
|
|
- int currentAlarmConditionKey2;
|
|
|
+ char currentAlarmConditionKey2[100];
|
|
|
AlarmCondition AlarmCdt;
|
|
|
};
|
|
|
|
|
@@ -78,7 +78,7 @@ struct TempProfileMsgContext
|
|
|
{
|
|
|
public:
|
|
|
int currentTempProfileKey1;
|
|
|
- int currentTempProfileKey2;
|
|
|
+ char currentTempProfileKey2[100];
|
|
|
TempProfile TempPrf;
|
|
|
};
|
|
|
|
|
@@ -86,7 +86,7 @@ struct TempPIDMsgContext
|
|
|
{
|
|
|
public:
|
|
|
int currentTempPIDKey1;
|
|
|
- int currentTempPIDKey2;
|
|
|
+ char currentTempPIDKey2[100];
|
|
|
TempPID TmpPID;
|
|
|
};
|
|
|
|
|
@@ -95,7 +95,7 @@ struct TempCorrectionMsgContext
|
|
|
{
|
|
|
public:
|
|
|
int currentTempCorrectionKey1;
|
|
|
- int currentTempCorrectionKey2;
|
|
|
+ char currentTempCorrectionKey2[100];
|
|
|
TempCorrection TmpCorrection;
|
|
|
};
|
|
|
|
|
@@ -104,7 +104,7 @@ struct APCPIDMsgContext
|
|
|
{
|
|
|
public:
|
|
|
int currentAPCPIDKey1;
|
|
|
- int currentAPCPIDKey2;
|
|
|
+ char currentAPCPIDKey2[100];
|
|
|
APCPID _apcpid;
|
|
|
};
|
|
|
|
|
@@ -113,7 +113,7 @@ struct LeakCheckMsgContext
|
|
|
{
|
|
|
public:
|
|
|
int currentLeakCheckKey1;
|
|
|
- int currentLeakCheckKey2;
|
|
|
+ char currentLeakCheckKey2[100];
|
|
|
LeakCheck Lkc;
|
|
|
};
|
|
|
|