| 1234567891011121314151617181920212223 |
- #ifndef RESPGETDEALINFO_H
- #define RESPGETDEALINFO_H
- #include <QtCore>
- #include "WSWool_global.h"
- class WSWOOLSHARED_EXPORT RespGetDealInfo
- {
- public:
- RespGetDealInfo(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 // RESPGETDEALINFO_H
|