#ifndef EFFECTRESULTSERVICE_H #define EFFECTRESULTSERVICE_H #include "ClassSet.h" class EffectResultService { public: EffectResultService(QObject *parent = nullptr); int AddEffectResult(const EffectResult &effectResult); bool QueryAllEffectResultByProjectId(QList *effectResult, int projectId); bool addDataList(QList &dataList); bool queryDataList(QList &dataList, int projectId); bool deleteData(int projectId); }; #endif // EFFECTRESULTSERVICE_H