123456789101112 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- from crud.base import CrudManager
- from models.problem import (ClassErrorPushRecord, StudentErrorPushRecord, ClassErrorQuestion,
- StudentErrorQuestion)
- crud_class_push_record = CrudManager(ClassErrorPushRecord)
- crud_student_push_record = CrudManager(StudentErrorPushRecord)
- crud_class_error_statistic = CrudManager(ClassErrorQuestion)
- crud_student_error_statistic = CrudManager(StudentErrorQuestion)
|