|
|
@ -8,7 +8,9 @@ import com.ruoyi.system.domain.userexam.dto.response.UserExamRespDTO;
|
|
|
|
import com.ruoyi.web.controller.manager.UserExamManager;
|
|
|
|
import com.ruoyi.web.controller.manager.UserExamManager;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
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.PostMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
@ -34,6 +36,15 @@ public class UserExamController extends BaseController {
|
|
|
|
private UserExamManager userExamManager;
|
|
|
|
private UserExamManager userExamManager;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private String prefix = "system/elExam/userExam";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("考试详情")
|
|
|
|
|
|
|
|
@GetMapping()
|
|
|
|
|
|
|
|
public String userExam() {
|
|
|
|
|
|
|
|
return prefix + "/userExam";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("考试详情")
|
|
|
|
@ApiOperation("考试详情")
|
|
|
|
@PostMapping("/list")
|
|
|
|
@PostMapping("/list")
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
|