面试/面谈

This commit is contained in:
zhangchenbiao
2024-03-25 14:41:57 +08:00
parent 60b680e06f
commit 994db14b5d
11 changed files with 137 additions and 19 deletions

View File

@@ -78,7 +78,13 @@ public class PCLineInterviewController {
@ApiOperation("上传文件")
@GetMapping("/upload/video")
public ResponseResult uploadVideo(@RequestParam("interviewId")Long interviewId, @RequestParam("videoUrlList") List<String> videoUrlList) throws ApiException {
lineInterviewService.uploadVideo(interviewId, videoUrlList);
return ResponseResult.success();
Boolean result = lineInterviewService.uploadVideo(interviewId, videoUrlList);
return ResponseResult.success(result);
}
@ApiOperation("重新面审")
@GetMapping("/reappointment")
public ResponseResult reappointment(@RequestParam("lineId")Long lineId) throws ApiException {
return ResponseResult.success(lineInterviewService.reappointment(lineId));
}
}

View File

@@ -69,4 +69,10 @@ public class LineInterviewController {
return ResponseResult.success(lineInterviewService.enterInterviewRoom(interviewId, partnerUser.getPartnerId(), InterviewUserTypeEnum.LINE));
}
@ApiOperation("修改面审时间")
@PostMapping("/appointment/time/modify")
public ResponseResult<Boolean> modifyAppointmentTime(@RequestBody @Validated AppointmentTimeRequest request) {
return ResponseResult.success(lineInterviewService.modifyAppointmentTime(request));
}
}