简历以及招聘人基础逻辑修改

This commit is contained in:
2025-12-09 20:09:46 +08:00
parent 8d76eda22f
commit 65255bafb9
18 changed files with 635 additions and 64 deletions

View File

@@ -0,0 +1,69 @@
package com.vetti.hotake.mapper;
import java.util.List;
import com.vetti.hotake.domain.HotakeCandidateInterviewRecordInfo;
/**
* 候选人面试记录信息Mapper接口
*
* @author wangxiangshun
* @date 2025-12-08
*/
public interface HotakeCandidateInterviewRecordInfoMapper
{
/**
* 查询候选人面试记录信息
*
* @param id 候选人面试记录信息主键
* @return 候选人面试记录信息
*/
public HotakeCandidateInterviewRecordInfo selectHotakeCandidateInterviewRecordInfoById(Long id);
/**
* 查询候选人面试记录信息列表
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 候选人面试记录信息集合
*/
public List<HotakeCandidateInterviewRecordInfo> selectHotakeCandidateInterviewRecordInfoList(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 新增候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 结果
*/
public int insertHotakeCandidateInterviewRecordInfo(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 修改候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfo 候选人面试记录信息
* @return 结果
*/
public int updateHotakeCandidateInterviewRecordInfo(HotakeCandidateInterviewRecordInfo hotakeCandidateInterviewRecordInfo);
/**
* 删除候选人面试记录信息
*
* @param id 候选人面试记录信息主键
* @return 结果
*/
public int deleteHotakeCandidateInterviewRecordInfoById(Long id);
/**
* 批量删除候选人面试记录信息
*
* @param ids 需要删除的数据主键集合
* @return 结果
*/
public int deleteHotakeCandidateInterviewRecordInfoByIds(Long[] ids);
/**
* 批量新增候选人面试记录信息
*
* @param hotakeCandidateInterviewRecordInfoList 候选人面试记录信息列表
* @return 结果
*/
public int batchInsertHotakeCandidateInterviewRecordInfo(List<HotakeCandidateInterviewRecordInfo> hotakeCandidateInterviewRecordInfoList);
}

View File

@@ -2,6 +2,7 @@ package com.vetti.hotake.mapper;
import java.util.List;
import com.vetti.hotake.domain.HotakeCvInfo;
import org.apache.ibatis.annotations.Param;
/**
* 简历信息Mapper接口
@@ -66,4 +67,13 @@ public interface HotakeCvInfoMapper
*/
public int batchInsertHotakeCvInfo(List<HotakeCvInfo> hotakeCvInfoList);
/**
* 删除简历信息
*
* @param userId 用户信息ID
* @return 结果
*/
public int deleteHotakeCvInfoByUserIdAndType(@Param("userId") Long userId,@Param("cvFileType") String cvFileType);
}