123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef __COUNTERCONTEXT_MSG_G_H
- #define __COUNTERCONTEXT_MSG_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace CounterContext {
- #define eMsg_CounterBasicInfo 0
- #define eMsgSig_CounterBasicInfo -1868486894
- struct CounterBasicInfo
- {
- CSimpleStringA name;
- CSimpleStringA workNumber;
- CSimpleStringA callid;
- CSimpleStringA skillCode;
- CSimpleStringA skillDesc;
- CSimpleStringA level;
- CBlob pngImage;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & name & workNumber & callid & skillCode & skillDesc & level & pngImage;
- }
- };
- ///////////////////////////
- } // namespace CounterContext
- #endif // __COUNTERCONTEXT_MSG_G_H
|