| 12345678910111213141516171819202122 |
- #ifndef RESPGETCHARGEINFO_H
- #define RESPGETCHARGEINFO_H
- #include <QtCore>
- #include "WSNumChk_global.h"
- class WSNUMCHKSHARED_EXPORT RespGetChargeInfo
- {
- public:
- RespGetChargeInfo(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;
- int totalMoney;
- };
- #endif // RESPGETCHARGEINFO_H
|