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.
hunqiu
b4a34f3397
|
6 hours ago | |
---|---|---|
.idea | 2 months ago | |
backend | 6 hours ago | |
doc | 2 months ago | |
frontend | 2 months ago | |
.gitignore | 2 months ago | |
Dockerfile | 2 months ago | |
LICENSE | 2 months ago | |
README.md | 6 hours ago | |
build.sh | 2 months ago | |
entrypoint.sh | 2 months ago | |
start.sh | 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; } }