请求方式修改
This commit is contained in:
@@ -114,8 +114,8 @@ public class HotakeRolesApplyInfoController extends BaseController
|
||||
* AI简历评分和排名系统
|
||||
*/
|
||||
@ApiOperation("AI简历评分和排名系统")
|
||||
@GetMapping("/aiCvScoringRankingList")
|
||||
public R<List<HotakeRolesApplyInfo>> getAiCvScoringRankingList(HotakeRolesApplyInfo hotakeRolesApplyInfo)
|
||||
@PostMapping("/aiCvScoringRankingList")
|
||||
public R<List<HotakeRolesApplyInfo>> getAiCvScoringRankingList(@RequestBody HotakeRolesApplyInfo hotakeRolesApplyInfo)
|
||||
{
|
||||
List<HotakeRolesApplyInfo> list = hotakeRolesApplyInfoService.handleAiCvScoringRankingList(hotakeRolesApplyInfo);
|
||||
return R.ok(list,"");
|
||||
@@ -125,8 +125,8 @@ public class HotakeRolesApplyInfoController extends BaseController
|
||||
* 招聘者查看候选人匹配度
|
||||
*/
|
||||
@ApiOperation("招聘者查看候选人匹配度")
|
||||
@GetMapping("/candidateCompatibilityInfo")
|
||||
public R<HotakeRolesApplyInfo> getCandidateCompatibilityInfo(HotakeRolesApplyInfo hotakeRolesApplyInfo)
|
||||
@PostMapping("/candidateCompatibilityInfo")
|
||||
public R<HotakeRolesApplyInfo> getCandidateCompatibilityInfo(@RequestBody HotakeRolesApplyInfo hotakeRolesApplyInfo)
|
||||
{
|
||||
HotakeRolesApplyInfo info = hotakeRolesApplyInfoService.handleCandidateCompatibilityInfo(hotakeRolesApplyInfo);
|
||||
return R.ok(info,"");
|
||||
|
||||
Reference in New Issue
Block a user