respregsysaccounts.h 460 B

12345678910111213141516171819202122
  1. #ifndef RESPREGSYSACCOUNTS_H
  2. #define RESPREGSYSACCOUNTS_H
  3. #include <QtCore>
  4. #include "WSSSO_global.h"
  5. class WSSSOSHARED_EXPORT RespRegSysAccounts
  6. {
  7. public:
  8. RespRegSysAccounts(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. QString getUserID();
  12. QString getUserCode();
  13. private:
  14. int rtnCode;
  15. QString rtnMemo;
  16. QString userID;
  17. QString userCode;
  18. QString json;
  19. };
  20. #endif // RESPREGSYSACCOUNTS_H