| 1234567891011121314151617181920212223242526 |
- #ifndef RESPDLJSJCRESULTFILE_H
- #define RESPDLJSJCRESULTFILE_H
- #include <QtCore>
- #include "WSCube_global.h"
- class WSCUBESHARED_EXPORT RespDlJSJCresultFile
- {
- public:
- RespDlJSJCresultFile(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 // RESPDLJSJCRESULTFILE_H
|