| 123456789101112131415161718 |
- #ifndef RESPPACKTRAN_H
- #define RESPPACKTRAN_H
- #include <Qtcore>
- #include "WSCube_global.h"
- class WSCUBESHARED_EXPORT RespPackTran
- {
- public:
- RespPackTran(QString json);
- int getRtnCode();
- QString getRtnMemo();
- private:
- int rtnCode;
- QString rtnMemo;
- QString json;
- };
- #endif // RESPPACKTRAN_H
|