GradeIndexInfoService.h 456 B

1234567891011121314
  1. #ifndef GRADEINDEXINFOSERVICE_H
  2. #define GRADEINDEXINFOSERVICE_H
  3. #include "ClassSet.h"
  4. class GradeIndexInfoService
  5. {
  6. public:
  7. GradeIndexInfoService(QObject *parent = nullptr);
  8. int AddGradeIndexInfo(const GradeIndexInfo &gradeIndexInfo);
  9. bool UpdateGradeIndexInfo(const GradeIndexInfo &gradeIndexInfo);
  10. bool QueryGradeIndexInfoByProjectId(QList<GradeIndexInfo *> *gradeIndexInfoList, int projectId);
  11. };
  12. #endif // GRADEINDEXINFOSERVICE_H