进入面试间增加修改房间状态及SQL查询优化

This commit is contained in:
pserimal
2023-06-20 19:03:35 +08:00
parent 712ca7b2c8
commit 322443f2c6
8 changed files with 66 additions and 84 deletions

View File

@@ -43,7 +43,7 @@ public class InterviewController {
@PostMapping("/queryByInterviewPlanId")
@ApiOperation("根据面试会议id查询面试信息")
public ResponseResult<InterviewVO> queryByInterviewPlanId(@RequestBody QueryByInterviewPlanIdReq request) {
InterviewVO interviewVO = interviewService.getInterviewInfo(request.getInterviewPlanId());
InterviewVO interviewVO = interviewService.getInterviewInfo(request);
return ResponseResult.success(interviewVO);
}