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
李炫好 9ce60a01cd
注释了idea文件包里的和jest.config.js,vue.config.js和webstorm.config.js文件
1 month ago
.idea 注释了idea文件包里的和jest.config.js,vue.config.js和webstorm.config.js文件 1 month ago
backend 注释了idea文件包里的和jest.config.js,vue.config.js和webstorm.config.js文件 1 month ago
doc 注释了idea文件包里的和jest.config.js,vue.config.js和webstorm.config.js文件 1 month ago
frontend 注释了idea文件包里的和jest.config.js,vue.config.js和webstorm.config.js文件 1 month ago
.gitignore 注释了ExamController.java和UploadDownloadController.java 2 months ago
Dockerfile init Repo 3 months ago
LICENSE init Repo 3 months ago
README.md 修改了contrellon文件夹 2 months ago
build.sh init Repo 3 months ago
entrypoint.sh init Repo 3 months ago
start.sh init Repo 3 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; } }