请求方式修改

This commit is contained in:
2026-01-22 19:28:37 +08:00
parent fb05cadd0f
commit ba1d916c23

View File

@@ -114,8 +114,8 @@ public class HotakeRolesApplyInfoController extends BaseController
* AI简历评分和排名系统 * AI简历评分和排名系统
*/ */
@ApiOperation("AI简历评分和排名系统") @ApiOperation("AI简历评分和排名系统")
@GetMapping("/aiCvScoringRankingList") @PostMapping("/aiCvScoringRankingList")
public R<List<HotakeRolesApplyInfo>> getAiCvScoringRankingList(HotakeRolesApplyInfo hotakeRolesApplyInfo) public R<List<HotakeRolesApplyInfo>> getAiCvScoringRankingList(@RequestBody HotakeRolesApplyInfo hotakeRolesApplyInfo)
{ {
List<HotakeRolesApplyInfo> list = hotakeRolesApplyInfoService.handleAiCvScoringRankingList(hotakeRolesApplyInfo); List<HotakeRolesApplyInfo> list = hotakeRolesApplyInfoService.handleAiCvScoringRankingList(hotakeRolesApplyInfo);
return R.ok(list,""); return R.ok(list,"");
@@ -125,8 +125,8 @@ public class HotakeRolesApplyInfoController extends BaseController
* 招聘者查看候选人匹配度 * 招聘者查看候选人匹配度
*/ */
@ApiOperation("招聘者查看候选人匹配度") @ApiOperation("招聘者查看候选人匹配度")
@GetMapping("/candidateCompatibilityInfo") @PostMapping("/candidateCompatibilityInfo")
public R<HotakeRolesApplyInfo> getCandidateCompatibilityInfo(HotakeRolesApplyInfo hotakeRolesApplyInfo) public R<HotakeRolesApplyInfo> getCandidateCompatibilityInfo(@RequestBody HotakeRolesApplyInfo hotakeRolesApplyInfo)
{ {
HotakeRolesApplyInfo info = hotakeRolesApplyInfoService.handleCandidateCompatibilityInfo(hotakeRolesApplyInfo); HotakeRolesApplyInfo info = hotakeRolesApplyInfoService.handleCandidateCompatibilityInfo(hotakeRolesApplyInfo);
return R.ok(info,""); return R.ok(info,"");