进入面试间增加根据面试状态和时间校验和修改面试信息

This commit is contained in:
pserimal
2023-06-26 13:29:06 +08:00
parent 44805a4401
commit 2bc4537192
10 changed files with 101 additions and 22 deletions

View File

@@ -38,7 +38,7 @@ public class InterviewController {
@PostMapping("/enter")
@ApiOperation("进入面试间")
public ResponseResult<EnterInterviewVO> enterInterviewRoom(@RequestBody EnterInterviewDto dto) {
public ResponseResult<EnterInterviewVO> enterInterviewRoom(@RequestBody EnterInterviewDto dto) throws ApiException {
return ResponseResult.success(interviewService.enterInterviewRoom(dto));
}