|
|
|
@ -2,13 +2,13 @@ package com.ruoyi.web.controller.exam;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
|
|
import com.ruoyi.system.domain.exam.dto.ExamDTO;
|
|
|
|
|
import com.ruoyi.system.domain.userexam.dto.request.UserExamReqDTO;
|
|
|
|
|
import com.ruoyi.system.domain.userexam.dto.response.UserExamRespDTO;
|
|
|
|
|
import com.ruoyi.web.controller.manager.UserExamManager;
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
@ -34,6 +34,15 @@ public class UserExamController extends BaseController {
|
|
|
|
|
private UserExamManager userExamManager;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String prefix = "system/elExam/userExam";
|
|
|
|
|
|
|
|
|
|
@ApiOperation("考试详情")
|
|
|
|
|
@GetMapping()
|
|
|
|
|
public String userExam() {
|
|
|
|
|
return prefix + "/userExam";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("考试详情")
|
|
|
|
|
@PostMapping("/list")
|
|
|
|
|
@ResponseBody
|
|
|
|
|