| 1234567891011121314151617181920212223242526 |
- #ifndef RESPDLBASESEGINFO_H
- #define RESPDLBASESEGINFO_H
- #include <QtCore>
- #include "WSNumChk_global.h"
- class WSNUMCHKSHARED_EXPORT RespDlBaseSegInfo
- {
- public:
- RespDlBaseSegInfo(QString json);
- int getRtnCode();
- QString getRtnMemo();
- QString getNewVersion();
- QString getBaseSegInfo();
- QString getFcEncryptParam();
- private:
- int rtnCode;
- QString rtnMemo;
- QString newVersion;
- QString json;
- QString baseSeginfo;
- QString fcEncryptParam;
- };
- #endif // RESPDLBASESEGINFO_H
|