| 123456789101112131415161718192021222324 |
- #ifndef RESPDLZXSHRESULTFILE_H
- #define RESPDLZXSHRESULTFILE_H
- #include <QtCore>
- #include "WSCube_global.h"
- class WSCUBESHARED_EXPORT RespDlZxshResultFile
- {
- public:
- RespDlZxshResultFile(QString json);
- int getRtnCode();
- QString getRtnMemo();
- QString getFileName();
- QString getFileContent();
- QString getFcEncodeType();
- private:
- int rtnCode;
- QString rtnMemo;
- QString json;
- QString fileName;
- QString fileContent;
- QString fcEncodeType;
- };
- #endif // RESPDLZXSHRESULTFILE_H
|