浏览代码

离线考试增加允许上传字段

宋悦 7 年之前
父节点
当前提交
2279a41497

+ 1 - 0
exam-work-api/src/main/java/cn/com/qmth/examcloud/service/examwork/service/ExamStudentService.java

@@ -101,6 +101,7 @@ public class ExamStudentService {
     public Page<ExamStudent> getAllExamStudent(ExamStudentDTO examCriteria, Pageable pageable){
     	Specification<ExamStudent> specification = getPageSpecification(examCriteria);
 		Page<ExamStudent> examStudents = examStudentRepo.findAll(specification,pageable);
+		processExamStudent(examStudents.getContent());
         return examStudents;
     }