面试相关修改

This commit is contained in:
俞扬
2023-06-19 15:45:50 +08:00
parent bbfd5e0b6e
commit 8cc163a3c0
5 changed files with 77 additions and 0 deletions

View File

@@ -80,4 +80,18 @@ public class InterviewController {
interviewService.approveAppointment(request);
return ResponseResult.success();
}
@PostMapping("/reInterview")
@ApiOperation("重新面试")
public ResponseResult reInterview(@RequestBody ReInterviewReq request) throws ApiException {
interviewService.reInterview(request);
return ResponseResult.success();
}
@PostMapping("/reject")
@ApiOperation("拒绝面试")
public ResponseResult reInterview(@RequestBody RejectInterviewReq request) throws ApiException {
interviewService.rejectInterview(request);
return ResponseResult.success();
}
}