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