| | |
| | | * @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); |
| | | |
| | | |
| | | |
| | | } |