12345678910111213141516171819 |
- #ifndef PROJECTMINDRELATIONSERVICE_H
- #define PROJECTMINDRELATIONSERVICE_H
- #include "ClassSet.h"
- class ProjectMindRelationService
- {
- public:
- ProjectMindRelationService(QObject *parent = nullptr);
-
- bool AddOrUpdateRelation(const ProjectMindRelation &relation);
-
- bool QueryByProjectIdAndType(ProjectMindRelation *relation, int projectId, int type);
-
- bool QueryByProjectId(QList<ProjectMindRelation *> *relationList, int projectId);
- };
- #endif
|