GradeInfoService.h 386 B

1234567891011121314
  1. #ifndef GRADEINFOSERVICE_H
  2. #define GRADEINFOSERVICE_H
  3. #include "ClassSet.h"
  4. class GradeInfoService
  5. {
  6. public:
  7. GradeInfoService(QObject *parent = nullptr);
  8. int AddGradeInfo(const GradeInfo &gradeInfo);
  9. bool UpdateGradeInfo(const GradeInfo &gradeInfo);
  10. bool QueryGradeByProjectIdAndType(GradeInfo *gradeInfo, int projectId, int type);
  11. };
  12. #endif // GRADEINFOSERVICE_H