respchangepass.h 342 B

123456789101112131415161718
  1. #ifndef RESPCHANGEPASS_H
  2. #define RESPCHANGEPASS_H
  3. #include <Qtcore>
  4. #include "WSSSO_global.h"
  5. class WSSSOSHARED_EXPORT RespChangePass
  6. {
  7. public:
  8. RespChangePass(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. private:
  12. int rtnCode;
  13. QString rtnMemo;
  14. QString json;
  15. };
  16. #endif // RESPCHANGEPASS_H