AI 逻辑调整
This commit is contained in:
@@ -187,19 +187,19 @@ public class HotakeAiCommonToolsController extends BaseController {
|
||||
*/
|
||||
@ApiOperation("候选人AI面试分析")
|
||||
@PostMapping(value = "/candidateAiInterviewAnalysis")
|
||||
public R<?> candidateAiInterviewAnalysis(@RequestBody HotakeCandidateAiInterviewAnalysisVo analysisVo)
|
||||
public R<HotakeCandidateAiInterviewAnalysisDto> candidateAiInterviewAnalysis(@RequestBody HotakeCandidateAiInterviewAnalysisVo analysisVo)
|
||||
{
|
||||
return R.ok(hotakeAiCommonToolsService.handleCandidateAiInterviewAnalysis(analysisVo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 招聘者AI简历评分和排名系统
|
||||
* 招聘者 AI简历评分和排名系统
|
||||
*/
|
||||
@ApiOperation("招聘者AI简历评分和排名系统")
|
||||
@ApiOperation("招聘者 AI简历评分和排名系统")
|
||||
@PostMapping(value = "/aiCvScoringRanking")
|
||||
public R<?> aiCvScoringRanking(@RequestBody HotakeAiCvScoringRankingVo scoringRankingVo)
|
||||
public R<?> aiCvScoringRanking(@RequestBody HotakeAiCvScoringRankingRoleApplyVo roleApplyVo)
|
||||
{
|
||||
return R.ok(hotakeAiCommonToolsService.handleAiCvScoringRanking(scoringRankingVo));
|
||||
return R.ok(hotakeAiCommonToolsService.handleAiCvScoringRanking(roleApplyVo));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -109,4 +109,6 @@ public class HotakeRolesApplyInfoController extends BaseController
|
||||
hotakeRolesApplyInfoService.updateBatchEditStage(stageVoList);
|
||||
return R.ok();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -17,6 +17,9 @@ import java.util.List;
|
||||
@Accessors(chain = true)
|
||||
public class HotakeAiInterviewScoringVo {
|
||||
|
||||
@ApiModelProperty("岗位申请ID")
|
||||
private Long roleApplyId;
|
||||
|
||||
@ApiModelProperty("AI 面试问题记录 数据集合")
|
||||
private List<HotakeAiInterviewQuestionRecordVo> aiInterviewQuestionRecordVoList;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user