respssoheartbeat.h 423 B

123456789101112131415161718192021
  1. #ifndef RESPSSOHEARTBEAT_H
  2. #define RESPSSOHEARTBEAT_H
  3. #include <QtCore>
  4. #include "WSSSO_global.h"
  5. class WSSSOSHARED_EXPORT RespSSOHeartBeat
  6. {
  7. public:
  8. RespSSOHeartBeat(QString json);
  9. int getRtnCode();
  10. QString getRefreshParam();
  11. QString getRefreshStamp();
  12. private:
  13. QString json;
  14. int rtnCode;
  15. QString refreshParam;
  16. QString refreshStamp;
  17. };
  18. #endif // RESPSSOHEARTBEAT_H