|
@@ -180,14 +180,14 @@ public class ExamController extends JeecgController<Exam, IExamService> {
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 在线考试
|
|
|
|
|
|
+ * 在线考试列表
|
|
*
|
|
*
|
|
* @param pageNo
|
|
* @param pageNo
|
|
* @param pageSize
|
|
* @param pageSize
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
- @AutoLog(value = "考试-在线考试")
|
|
|
|
- @ApiOperation(value = "考试-在线考试", notes = "考试-在线考试")
|
|
|
|
|
|
+ @AutoLog(value = "考试-在线考试列表")
|
|
|
|
+ @ApiOperation(value = "考试-在线考试列表", notes = "考试-在线考试列表")
|
|
@RequiresPermissions("exam:onlineExam")
|
|
@RequiresPermissions("exam:onlineExam")
|
|
@RequestMapping(value = "/onlineExam", method = RequestMethod.GET)
|
|
@RequestMapping(value = "/onlineExam", method = RequestMethod.GET)
|
|
public Result<IPage<Exam>> onlineExam(Exam exam, @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
public Result<IPage<Exam>> onlineExam(Exam exam, @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
|
|
@@ -201,7 +201,7 @@ public class ExamController extends JeecgController<Exam, IExamService> {
|
|
return result;
|
|
return result;
|
|
}
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "考试-获取正在进行的考试")
|
|
|
|
|
|
+ @ApiOperation(value = "考试-获取正在进行中的考试")
|
|
@GetMapping(value = "/listExamIn")
|
|
@GetMapping(value = "/listExamIn")
|
|
public Result<?> listExamIn() {
|
|
public Result<?> listExamIn() {
|
|
LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|
|
LoginUser user = (LoginUser) SecurityUtils.getSubject().getPrincipal();
|