#ifndef RESPGETCHARGEINFO_H #define RESPGETCHARGEINFO_H #include #include "WSWool_global.h" class WSWOOLSHARED_EXPORT RespGetChargeInfo { public: RespGetChargeInfo(QString json); int getRtnCode(); QString getRtnMemo(); int getRsCount(); QMultiMap getRs(); private: int rtnCode; QString rtnMemo; QString json; QMultiMap map; int rsCount; int totalMoney; }; #endif // RESPGETCHARGEINFO_H