| 12345678910111213141516171819202122 |
- #ifndef RESPREGSYSACCOUNTS_H
- #define RESPREGSYSACCOUNTS_H
- #include <QtCore>
- #include "WSSSO_global.h"
- class WSSSOSHARED_EXPORT RespRegSysAccounts
- {
- public:
- RespRegSysAccounts(QString json);
- int getRtnCode();
- QString getRtnMemo();
- QString getUserID();
- QString getUserCode();
- private:
- int rtnCode;
- QString rtnMemo;
- QString userID;
- QString userCode;
- QString json;
- };
- #endif // RESPREGSYSACCOUNTS_H
|