| 123456789101112131415161718192021222324252627282930313233 |
- #ifndef PROJECTINFOMANGER_H
- #define PROJECTINFOMANGER_H
- #include <QObject>
- #include "httprequest.h"
- // 处理批号的管理和同步
- class ProjectInfoManger : public QObject
- {
- Q_OBJECT
- public:
- explicit ProjectInfoManger(QObject *parent = nullptr);
- enum ReqStatus
- {
- IDIL = 0,
- Load_Server_List = 1,
- Sync_Local_List = 2
- };
- signals:
- public slots:
- void loadServerList();
- void syncLocalList();
- private slots:
- void loadLocalList();
- private:
- ReqStatus _status;
- };
- #endif // PROJECTINFOMANGER_H
|