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