respdlbaseseginfo.h 541 B

1234567891011121314151617181920212223242526
  1. #ifndef RESPDLBASESEGINFO_H
  2. #define RESPDLBASESEGINFO_H
  3. #include <QtCore>
  4. #include "WSNumChk_global.h"
  5. class WSNUMCHKSHARED_EXPORT RespDlBaseSegInfo
  6. {
  7. public:
  8. RespDlBaseSegInfo(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. QString getNewVersion();
  12. QString getBaseSegInfo();
  13. QString getFcEncryptParam();
  14. private:
  15. int rtnCode;
  16. QString rtnMemo;
  17. QString newVersion;
  18. QString json;
  19. QString baseSeginfo;
  20. QString fcEncryptParam;
  21. };
  22. #endif // RESPDLBASESEGINFO_H