123456789101112131415 |
- #ifndef SCHEMEINFOSERVICE_H
- #define SCHEMEINFOSERVICE_H
- #include "ClassSet.h"
- class SchemeInfoService
- {
- public:
- SchemeInfoService(QObject *parent = nullptr);
- ////////////////////方案持久化-start////////////////////
- bool AddSchemeInfoList(const QList<SchemaEval *> &schemaEvalList);
- bool DeleteSchemeByEngineerId(int engineerId);
- bool QuerySchemeInfoByEngineerId(QList<SchemaEval *> *schemeList, int engineerId, int type);
- };
- #endif // SCHEMEINFOSERVICE_H
|