|
@@ -49,6 +49,18 @@ public class ExamControlController extends ControllerSupport {
|
|
return examStudentService.queryOnlineExamList(user.getUserId(), ExamType.ONLINE);
|
|
return examStudentService.queryOnlineExamList(user.getUserId(), ExamType.ONLINE);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 获取在线作业待考列表
|
|
|
|
+ *
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @ApiOperation(value = "获取在线作业待考列表")
|
|
|
|
+ @GetMapping("/queryHomeworkList")
|
|
|
|
+ public List<OnHandExamInfo> queryHomeworkList() {
|
|
|
|
+ User user = getAccessUser();
|
|
|
|
+ return examStudentService.queryOnlineExamList(user.getUserId(),ExamType.ONLINE_HOMEWORK);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 获取考试同步完成百分比
|
|
* 获取考试同步完成百分比
|
|
*
|
|
*
|