| 123456789101112131415161718192021 |
- #ifndef RESPGETMYHMYYINFO_H
- #define RESPGETMYHMYYINFO_H
- #include "WSCube_global.h"
- #include <QtCore>
- class WSCUBESHARED_EXPORT RespGetMyHmyyInfo
- {
- public:
- RespGetMyHmyyInfo(QString json);
- int getRtnCode();
- QString getRtnMemo();
- int getRsCount();
- QMultiMap<QString,QString> getRs();
- private:
- int rtnCode;
- QString rtnMemo;
- QString json;
- QMultiMap<QString,QString> map;
- int rsCount;
- };
- #endif // RESPGETMYHMYYINFO_H
|