respdlzxshresultfile.h 540 B

123456789101112131415161718192021222324
  1. #ifndef RESPDLZXSHRESULTFILE_H
  2. #define RESPDLZXSHRESULTFILE_H
  3. #include <QtCore>
  4. #include "WSCube_global.h"
  5. class WSCUBESHARED_EXPORT RespDlZxshResultFile
  6. {
  7. public:
  8. RespDlZxshResultFile(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. QString getFileName();
  12. QString getFileContent();
  13. QString getFcEncodeType();
  14. private:
  15. int rtnCode;
  16. QString rtnMemo;
  17. QString json;
  18. QString fileName;
  19. QString fileContent;
  20. QString fcEncodeType;
  21. };
  22. #endif // RESPDLZXSHRESULTFILE_H