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
hunqiu b4a34f3397
修改了contrellon文件夹
6 hours ago
.idea init Repo 2 months ago
backend 修改了contrellon文件夹 6 hours ago
doc init Repo 2 months ago
frontend init Repo 2 months ago
.gitignore init Repo 2 months ago
Dockerfile init Repo 2 months ago
LICENSE init Repo 2 months ago
README.md 修改了contrellon文件夹 6 hours 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; } }