123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- #ifndef __MAINTAINWATCHER_MSG_G_H
- #define __MAINTAINWATCHER_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace MaintainWatcher {
- #define eMsg_UkeyVerify 0
- #define eMsg_UkeyPullOut 1
- #define eMsg_UkeyVerifyEx 2
- #define eMsg_UkeyNormalMaintain 3
- #define eMsg_UkeyInsert 4
- #define eMsg_InputPwd 5
- #define eMsg_Recommender 6
- #define eMsg_TheUkeyInsert 7
- #define eMsg_TheUkeyPullOut 8
- #define eMsgSig_UkeyVerify 1724529971
- #define eMsgSig_UkeyPullOut -813795400
- #define eMsgSig_UkeyVerifyEx -16378889
- #define eMsgSig_UkeyNormalMaintain -1043376910
- #define eMsgSig_UkeyInsert -568862035
- #define eMsgSig_InputPwd -954968110
- #define eMsgSig_Recommender 1982749368
- #define eMsgSig_TheUkeyInsert 1767270155
- #define eMsgSig_TheUkeyPullOut -458384894
- struct UkeyVerify
- {
- CSimpleStringA AgentId;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & AgentId;
- }
- };
- ///////////////////////////
- struct UkeyPullOut
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- ///////////////////////////
- struct UkeyVerifyEx
- {
- CSimpleStringA UserInfo;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & UserInfo;
- }
- };
- ///////////////////////////
- struct UkeyNormalMaintain
- {
- CSimpleStringA UserInfo;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & UserInfo;
- }
- };
- ///////////////////////////
- struct UkeyInsert
- {
- CSimpleStringA UkeyID;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & UkeyID;
- }
- };
- ///////////////////////////
- struct InputPwd
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- ///////////////////////////
- struct Recommender
- {
- CSimpleStringA OfficeID;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & OfficeID;
- }
- };
- ///////////////////////////
- struct TheUkeyInsert
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- ///////////////////////////
- struct TheUkeyPullOut
- {
- void Serialize(SpBuffer &Buf)
- {
- }
- };
- ///////////////////////////
- } // namespace MaintainWatcher
- #endif // __MAINTAINWATCHER_MSG_G_H
|