| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gkhy.exam.common.api.CommonPage; |
| | | import com.gkhy.exam.system.domain.ExPaperStudent; |
| | | import com.gkhy.exam.system.domain.vo.BatchPaperStudentVO; |
| | | import com.gkhy.exam.system.domain.vo.ExPaperStudentVO; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | |
| | | /** |
| | | * 批量新增考卷与学员关系 |
| | | * @param paperStudentMap |
| | | * @param batchPaperStudentVO |
| | | * @return |
| | | */ |
| | | public int batchAddPaperStudent(Map<String,Object> paperStudentMap); |
| | | public int batchAddPaperStudent(BatchPaperStudentVO batchPaperStudentVO); |
| | | |
| | | /** |
| | | * 分页获取学员的试卷列表 |
| | |
| | | */ |
| | | public void checkStudentUnique(List<ExPaperStudent> paperStudents); |
| | | |
| | | /** |
| | | * 批改试卷 |
| | | * @param paperStudentVO |
| | | */ |
| | | public void doReview(ExPaperStudentVO paperStudentVO); |
| | | |
| | | /** |
| | | * 计算试卷分数 |
| | | * @param paperStudent |
| | | */ |
| | | public void handlePaperData(ExPaperStudent paperStudent); |
| | | |
| | | } |