respgetmyhmyyinfo.h 475 B

123456789101112131415161718192021
  1. #ifndef RESPGETMYHMYYINFO_H
  2. #define RESPGETMYHMYYINFO_H
  3. #include "WSCube_global.h"
  4. #include <QtCore>
  5. class WSCUBESHARED_EXPORT RespGetMyHmyyInfo
  6. {
  7. public:
  8. RespGetMyHmyyInfo(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. int getRsCount();
  12. QMultiMap<QString,QString> getRs();
  13. private:
  14. int rtnCode;
  15. QString rtnMemo;
  16. QString json;
  17. QMultiMap<QString,QString> map;
  18. int rsCount;
  19. };
  20. #endif // RESPGETMYHMYYINFO_H