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 0fe04dc92a
第二次修改
8 months ago
.idea init Repo 10 months ago
backend 第二次修改 8 months ago
doc init Repo 10 months ago
frontend init Repo 10 months ago
.gitignore init Repo 10 months ago
Dockerfile init Repo 10 months ago
LICENSE init Repo 10 months ago
README.md 修改了contrellon文件夹 8 months ago
build.sh init Repo 10 months ago
entrypoint.sh init Repo 10 months ago
start.sh init Repo 10 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; } }