| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- #ifndef __INTERACTIVELOG_DEF_G_H
- #define __INTERACTIVELOG_DEF_G_H
- #pragma once
- // This code is generated by spgen tool!
- #include "SpHelper.h"
- namespace InteractiveLog {
- //
- // const goes here
- //
- #define LogService_Method_LogFunction 0
- #define LogService_Method_LogCustomerID 1
- #define LogService_Method_LogAgreement 2
- #define LogService_Method_LogReceipt 3
- #define LogService_Method_LogOperation 4
- #define LogService_Method_LogResponse 5
- #define LogService_Method_LogAgent 6
- #define LogService_Method_LogBegin 7
- #define LogService_Method_LogEnd 8
- #define LogService_Method_LogCallID 9
- #define LogService_MethodSignature_LogFunction 1504975974
- #define LogService_MethodSignature_LogCustomerID 1449949503
- #define LogService_MethodSignature_LogAgreement -1000900347
- #define LogService_MethodSignature_LogReceipt 910613943
- #define LogService_MethodSignature_LogOperation -975180857
- #define LogService_MethodSignature_LogResponse -617159288
- #define LogService_MethodSignature_LogAgent 1269030039
- #define LogService_MethodSignature_LogBegin 1908299243
- #define LogService_MethodSignature_LogEnd 2006046815
- #define LogService_MethodSignature_LogCallID -555754721
- struct LogService_LogFunction_Info
- {
- CSimpleStringW nam;
- CSimpleStringW display;
- CSimpleStringW product;
- CSimpleStringW service_code;
- int action_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & nam & display & product & service_code & action_id;
- }
- };
- struct LogService_LogCustomerID_Info
- {
- CSimpleStringW customer_id;
- CSimpleStringW verify_method;
- int level;
- int action_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & customer_id & verify_method & level & action_id;
- }
- };
- struct LogService_LogAgreement_Info
- {
- CSimpleStringW content;
- int action_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & content & action_id;
- }
- };
- struct LogService_LogReceipt_Info
- {
- CSimpleStringW content;
- int action_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & content & action_id;
- }
- };
- struct LogService_LogOperation_Info
- {
- CSimpleStringW code;
- CSimpleStringW content;
- int action_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & code & content & action_id;
- }
- };
- struct LogService_LogResponse_Info
- {
- CSimpleStringW code;
- CSimpleStringW content;
- int action_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & code & content & action_id;
- }
- };
- struct LogService_LogAgent_Info
- {
- CSimpleStringW code;
- CSimpleStringW content;
- int action_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & code & content & action_id;
- }
- };
- struct LogService_LogBegin_Info
- {
- CSimpleStringW session_id;
- int session_count;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & session_id & session_count;
- }
- };
- struct LogService_LogEnd_Info
- {
- CSimpleStringW session_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & session_id;
- }
- };
- struct LogService_LogCallID_Info
- {
- CSimpleStringW call_id;
- CSimpleStringW workNumber;
- CSimpleStringW skillCode;
- int action_id;
- void Serialize(SpBuffer &Buf)
- {
- auto & buf = Buf & call_id & workNumber & skillCode & action_id;
- }
- };
- ///////////////////////////
- } // namespace InteractiveLog
- #endif // __INTERACTIVELOG_DEF_G_H
|