请求方式修改
This commit is contained in:
@@ -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,"");
|
||||||
|
|||||||
Reference in New Issue
Block a user