| 12345678910111213141516171819 |
- #ifndef RESPFORECASTSEG_H
- #define RESPFORECASTSEG_H
- #include <QtCore>
- #include "WSNumChk_global.h"
- class WSNUMCHKSHARED_EXPORT RespForeCastSeg
- {
- public:
- RespForeCastSeg(QString json);
- int getRtnCode();
- QString getRtnMemo();
- QString getFcResult();
- private:
- int rtnCode;
- QString rtnMemo;
- QString json;
- QString fcResult;
- };
- #endif // RESPFORECASTSEG_H
|