| 12345678910111213141516171819202122 |
- #ifndef RESPDLDYSEGINFO_H
- #define RESPDLDYSEGINFO_H
- #include <QtCore>
- #include "WSNumChk_global.h"
- class WSNUMCHKSHARED_EXPORT RespDlDySegInfo
- {
- public:
- RespDlDySegInfo(QString json);
- int getRtnCode();
- QString getRtnMemo();
- QString getSegChkInfo();
- QString getFcEncryptParam();
- private:
- int rtnCode;
- QString rtnMemo;
- QString json;
- QString segChkInfo;
- QString fcEncryptParam;
- };
- #endif // RESPDLDYSEGINFO_H
|