预约申请

This commit is contained in:
俞扬
2023-06-20 14:06:05 +08:00
parent 8296e70f26
commit 33e90cf542
7 changed files with 43 additions and 16 deletions

View File

@@ -18,7 +18,7 @@ import org.springframework.web.bind.annotation.*;
@Api(tags = "加盟商资格面试")
@RestController
@RequestMapping("interview")
@RequestMapping("/interview")
public class InterviewController {
@Autowired
@@ -47,7 +47,7 @@ public class InterviewController {
@PostMapping("/appointment/submit")
@ApiOperation("预约面试")
public ResponseResult<CreateAppointmentVO> createAppointment(@RequestBody CreateAppointmentReq request) {
public ResponseResult<CreateAppointmentVO> createAppointment(@RequestBody CreateAppointmentReq request) throws ApiException {
return ResponseResult.success(interviewBaseService.createAppointment(request));
}