|
@@ -68,6 +68,14 @@ public class AppJobCvRelController {
|
|
|
return success(jobCvRelService.send(reqVO));
|
|
return success(jobCvRelService.send(reqVO));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @PostMapping("/withdraw")
|
|
|
|
|
+ @Operation(summary = "撤销投递简历(已查看简历无法撤回)")
|
|
|
|
|
+ @Idempotent(keyResolver = UserIdempotentKeyResolver.class)
|
|
|
|
|
+ public CommonResult<Boolean> withdraw(@RequestParam("id") Long id) {
|
|
|
|
|
+ jobCvRelService.withdraw(id);
|
|
|
|
|
+ return success(true);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
@PreAuthenticated
|
|
@PreAuthenticated
|
|
|
@GetMapping("/hire/page")
|
|
@GetMapping("/hire/page")
|
|
|
@Operation(summary = "众聘分享-获取邀请投递的职位信息")
|
|
@Operation(summary = "众聘分享-获取邀请投递的职位信息")
|