This commit is contained in:
zhangchenbiao
2024-04-15 10:04:20 +08:00
parent f33ae0c30e
commit 44d9f6f95a
3 changed files with 5 additions and 1 deletions

View File

@@ -62,6 +62,7 @@ public class PCLineInterviewController {
@ApiOperation("修改面试官")
@PostMapping("/modify")
public ResponseResult<Boolean> modifyInterviewer(@RequestBody @Validated ModifyInterviewerRequest request) {
request.setOperatorUserId(CurrentUserHolder.getUserId());
return ResponseResult.success(lineInterviewService.modifyInterviewer(request));
}