面试/面谈
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user