| 1234567891011121314151617181920 |
- #ifndef RESPDELHMYY_H
- #define RESPDELHMYY_H
- #include <QtCore>
- #include "WSCube_global.h"
- class WSCUBESHARED_EXPORT RespDelHmyy
- {
- public:
- RespDelHmyy(QString json);
- int getRtnCode();
- QString getRtnMemo();
- private:
- int rtnCode;
- QString rtnMemo;
- QString json;
- };
- #endif // RESPDELHMYY_H
|