|
@@ -46,6 +46,14 @@ public class AppRecruitJobFairController {
|
|
|
return success(BeanUtils.toBean(jobFairService.list(), JobFairRespVO.class));
|
|
|
}
|
|
|
|
|
|
+ @PreAuthenticated
|
|
|
+ @GetMapping("/get")
|
|
|
+ @Operation(summary = "根据id查询招聘会")
|
|
|
+ public CommonResult<JobFairRespVO> get(@RequestParam("id") Long id) {
|
|
|
+ return success(BeanUtils.toBean(jobFairService.getJobFair(id), JobFairRespVO.class));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@PreAuthenticated
|
|
|
@PostMapping("/join")
|
|
|
@Operation(summary = "企业将职位加入招聘会")
|