respmfuserpay.h 338 B

12345678910111213141516171819
  1. #ifndef RESPMFUSERPAY_H
  2. #define RESPMFUSERPAY_H
  3. #include <Qtcore>
  4. #include "WSSSO_global.h"
  5. class WSSSOSHARED_EXPORT RespMfUserPay
  6. {
  7. public:
  8. RespMfUserPay(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. private:
  12. int rtnCode;
  13. QString rtnMemo;
  14. QString json;
  15. };
  16. #endif // RESPMFUSERPAY_H