| 12345678910111213141516171819202122 |
- #ifndef RESPGETMFUSERBLANCE_H
- #define RESPGETMFUSERBLANCE_H
- #include <QtCore>
- #include "WSSSO_global.h"
- class WSSSOSHARED_EXPORT RespGetMfUserBlance
- {
- public:
- RespGetMfUserBlance(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 // RESPGETMFUSERBLANCE_H
|