| 123456789101112131415161718 |
- #ifndef RESPCHANGEPASS_H
- #define RESPCHANGEPASS_H
- #include <Qtcore>
- #include "WSSSO_global.h"
- class WSSSOSHARED_EXPORT RespChangePass
- {
- public:
- RespChangePass(QString json);
- int getRtnCode();
- QString getRtnMemo();
- private:
- int rtnCode;
- QString rtnMemo;
- QString json;
- };
- #endif // RESPCHANGEPASS_H
|