problem.py 474 B

123456789101112
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from crud.base import CrudManager
  4. from models.problem import (ClassErrorPushRecord, StudentErrorPushRecord, ClassErrorQuestion,
  5. StudentErrorQuestion)
  6. crud_class_push_record = CrudManager(ClassErrorPushRecord)
  7. crud_student_push_record = CrudManager(StudentErrorPushRecord)
  8. crud_class_error_statistic = CrudManager(ClassErrorQuestion)
  9. crud_student_error_statistic = CrudManager(StudentErrorQuestion)