respforecastseg.h 401 B

12345678910111213141516171819
  1. #ifndef RESPFORECASTSEG_H
  2. #define RESPFORECASTSEG_H
  3. #include <QtCore>
  4. #include "WSNumChk_global.h"
  5. class WSNUMCHKSHARED_EXPORT RespForeCastSeg
  6. {
  7. public:
  8. RespForeCastSeg(QString json);
  9. int getRtnCode();
  10. QString getRtnMemo();
  11. QString getFcResult();
  12. private:
  13. int rtnCode;
  14. QString rtnMemo;
  15. QString json;
  16. QString fcResult;
  17. };
  18. #endif // RESPFORECASTSEG_H