| | |
| | | import org.springblade.modules.exam.entity.ExamExaminationSubject; |
| | | import org.springblade.modules.exam.entity.ExamPaper; |
| | | import org.springblade.modules.exam.entity.ExamSubjectChoices; |
| | | import org.springblade.modules.exam.vo.ExamPaperSubjectVO; |
| | | import org.springblade.modules.exam.vo.ExamPaperVO; |
| | | import org.springblade.modules.exam.vo.ExamStatisticsVO; |
| | | import org.springblade.modules.exam.vo.ExamSubjectChoicesVO; |
| | | import org.springblade.modules.exam.vo.*; |
| | | import org.springblade.modules.training.entity.TrainingRegistration; |
| | | |
| | | import java.util.List; |
| | |
| | | * @return |
| | | */ |
| | | List<ExamStatisticsVO> getExamInfoByExamId(@Param("page") IPage<ExamStatisticsVO> page,@Param("examPaper") ExamStatisticsVO examPaperVO); |
| | | |
| | | /** |
| | | * 根据考试id 统计查询考试信息 |
| | | * @param examScoreVO |
| | | * @return |
| | | */ |
| | | List<ExamStatisticsVO> getExamInfoByExamIdList(@Param("examPaper") ExamScoreVO examScoreVO); |
| | | |
| | | /** |
| | | * 查询考试成绩明细 |
| | | * @param examScoreVO |
| | | * @return |
| | | */ |
| | | List<ExamScoreVO> getExamScoreList(@Param("examScore") ExamScoreVO examScoreVO); |
| | | |
| | | /** |
| | | * 取出随机的题目 |
| | | * @param list |
| | | * @param number 取出的数量 |
| | | * @return |
| | | */ |
| | | List<ExamSubjectChoicesVO> queryRandomSubjectList(@Param("list") List<String> list,@Param("number") Integer number); |
| | | |
| | | /** |
| | | * 模拟考试随机抽题,未缴费人员 |
| | | * @return |
| | | */ |
| | | List<ExamSubjectChoicesVO> simulateQueryRandomSubjectList(); |
| | | } |