respgetcostinfo.h 516 B

1234567891011121314151617181920212223
  1. #ifndef RESPGETCOSTINFO_H
  2. #define RESPGETCOSTINFO_H
  3. #include <QtCore>
  4. #include "WSWool_global.h"
  5. class WSWOOLSHARED_EXPORT RespGetCostInfo
  6. {
  7. public:
  8. RespGetCostInfo(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. QString getTotalFee();
  12. int getRsCount();
  13. QMultiMap<QString,QString> getRs();
  14. private:
  15. int rtnCode;
  16. QString rtnMemo;
  17. QString json;
  18. QMultiMap<QString,QString> map;
  19. QString totalFee;
  20. int rsCount;
  21. };
  22. #endif // RESPGETCOSTINFO_H