1234567891011121314 |
- #ifndef EFFECTINDEXINFOSERVICE_H
- #define EFFECTINDEXINFOSERVICE_H
- #include "ClassSet.h"
- class EffectIndexInfoService
- {
- public:
- EffectIndexInfoService(QObject *parent = nullptr);
- int AddEffectIndexInfo(const EffectIndexInfo &effectIndexInfo);
- bool UpdateEffectIndexInfo(const EffectIndexInfo &effectIndexInfo);
- bool QueryEffectIndexInfoByProjectId(QList<EffectIndexInfo *> *effectIndexInfoList, int projectId);
- };
- #endif // EFFECTINDEXINFOSERVICE_H
|