#ifndef ALGORITHMSERVICE_H #define ALGORITHMSERVICE_H #include "ClassSet.h" class AlgorithmService { public: AlgorithmService(QObject *parent = nullptr); //添加算法 int AddAlgorithm(const AlgorithmInfo &info); //更新算法 bool UpdateAlgorithm(const AlgorithmInfo &info); //根据编号查询是否存在 bool QueryByCode(QString code); //根据类型获取到列表 bool QueryByType(QList *infos, int type); //获取所有 bool QueryAll(QList *infos); //根据id禁用 bool DeleteById(int id); }; #endif // ALGORITHMSERVICE_H