respdldyseginfo.h 470 B

12345678910111213141516171819202122
  1. #ifndef RESPDLDYSEGINFO_H
  2. #define RESPDLDYSEGINFO_H
  3. #include <QtCore>
  4. #include "WSNumChk_global.h"
  5. class WSNUMCHKSHARED_EXPORT RespDlDySegInfo
  6. {
  7. public:
  8. RespDlDySegInfo(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. QString getSegChkInfo();
  12. QString getFcEncryptParam();
  13. private:
  14. int rtnCode;
  15. QString rtnMemo;
  16. QString json;
  17. QString segChkInfo;
  18. QString fcEncryptParam;
  19. };
  20. #endif // RESPDLDYSEGINFO_H