123456789101112131415161718192021222324 |
- #ifndef CNODEDATASERVICE_H
- #define CNODEDATASERVICE_H
- #include<CCanvas/CMind.h>
- class CNodeDataService
- {
- public:
- CNodeDataService(QObject *parent = nullptr);
-
- int AddCNodeData(const CNodeData &cNodeData);
-
- bool UpdateCNodeData(const CNodeData &cNodeData);
-
- bool QueryCNodeDataById(CNodeData &cNodeData, int id);
-
- bool QueryAll(QList<CNodeData> &cNodeDataList,int projectId,int evalType);
-
- bool DeleteCNodeDataById(int id);
- };
- #endif
|