You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
李炫好 08d6fbefb1
注释了ExamController.java和UploadDownloadController.java
2 weeks ago
.idea 注释了ExamController.java和UploadDownloadController.java 2 weeks ago
backend 注释了ExamController.java和UploadDownloadController.java 2 weeks ago
doc init Repo 2 months ago
frontend 修改了view文件夹 3 weeks ago
.gitignore init Repo 2 months ago
Dockerfile init Repo 2 months ago
LICENSE init Repo 2 months ago
README.md 修改了contrellon文件夹 3 weeks ago
build.sh init Repo 2 months ago
entrypoint.sh init Repo 2 months ago
start.sh init Repo 2 months ago

README.md

ResultVO getExamRecordDetail(@PathVariable String recordId) { // 定义返回结果 ResultVO resultVO; try { // 调用examService获取考试记录详情 RecordDetailVo recordDetailVo = examService.getRecordDetail(recordId); // 返回成功结果 resultVO = new ResultVO<>(0, "获取考试记录详情成功", recordDetailVo); } catch (Exception e) { // 打印异常信息 e.printStackTrace(); // 返回失败结果 resultVO = new ResultVO<>(-1, "获取考试记录详情失败", null); } // 返回结果 return resultVO; } }