ReturnMessage.h 338 B

123456789101112131415
  1. #ifndef RETURNMESSAGE_H
  2. #define RETURNMESSAGE_H
  3. #include <QObject>
  4. static QString SUCCESS = "1";
  5. static QString FAIL = "0";
  6. static QString PARAM_MISSING_EXCEPTION = "999";
  7. static QString PARAM_NULL_VALUE = "888";
  8. class ReturnMessage
  9. {
  10. public:
  11. ReturnMessage();
  12. };
  13. #endif // RETURNMESSAGE_H