| | |
| | | ExPaperStudent selectPaperStudentById(Long paperStudentId); |
| | | |
| | | /** |
| | | * 根据id获取考卷下的学员,信息较少 |
| | | * @param paperStudentId |
| | | * @return |
| | | */ |
| | | ExPaperStudent selectSimplePaperStudentById(Long paperStudentId); |
| | | |
| | | /** |
| | | * 分页查询考卷下分配的学员 |
| | | * @param paperStudent |
| | | * @return |
| | |
| | | * @return |
| | | */ |
| | | ExPaperStudent selectByPaperStudentId(ExPaperStudent paperStudent); |
| | | |
| | | /** |
| | | * 根据学员id获取学员分配的考试列表 |
| | | * @param studentId |
| | | * @return |
| | | */ |
| | | List<ExPaperStudent> selectByStudentId(Long studentId); |
| | | |
| | | /** |
| | | * 分页获取未完成考试学生列表 |
| | | * @param startIndex |
| | | * @param pageSize |
| | | * @return |
| | | */ |
| | | List<ExPaperStudent> selectNoCompleteStudent(int startIndex,int pageSize); |
| | | |
| | | /** |
| | | * 批量更新完成状态 |
| | | * @param paperStudentIds |
| | | * @param completed |
| | | */ |
| | | void batchUpdateComplete(@Param("paperStudentIds") List<Long> paperStudentIds,@Param("completed") Integer completed); |
| | | |
| | | |
| | | |
| | | } |