候选人AI面试分析

This commit is contained in:
2026-01-19 22:28:47 +08:00
parent 62de85c6e0
commit 2f76084d98
18 changed files with 410 additions and 16 deletions

View File

@@ -2,6 +2,7 @@ package com.vetti.hotake.service;
import java.util.List;
import com.vetti.hotake.domain.HotakeRolesApplyInfo;
import com.vetti.hotake.domain.vo.HotakeRolesApplyStageVo;
/**
* 候选人岗位申请信息Service接口
@@ -67,4 +68,13 @@ public interface IHotakeRolesApplyInfoService
*/
public int batchInsertHotakeRolesApplyInfo(List<HotakeRolesApplyInfo> hotakeRolesApplyInfoList);
/**
* 修改候选人岗位申请信息
*
* @param stageVoList 候选人岗位申请信息
* @return 结果
*/
public int updateBatchEditStage(List<HotakeRolesApplyStageVo> stageVoList);
}