岗位- AI问题业务逻辑完善
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
package com.vetti.hotake.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.vetti.hotake.domain.HotakeAiInterviewQuestionsInfo;
|
||||
|
||||
/**
|
||||
* AI面试问题信息Mapper接口
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-12-14
|
||||
*/
|
||||
public interface HotakeAiInterviewQuestionsInfoMapper
|
||||
{
|
||||
/**
|
||||
* 查询AI面试问题信息
|
||||
*
|
||||
* @param id AI面试问题信息主键
|
||||
* @return AI面试问题信息
|
||||
*/
|
||||
public HotakeAiInterviewQuestionsInfo selectHotakeAiInterviewQuestionsInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询AI面试问题信息列表
|
||||
*
|
||||
* @param hotakeAiInterviewQuestionsInfo AI面试问题信息
|
||||
* @return AI面试问题信息集合
|
||||
*/
|
||||
public List<HotakeAiInterviewQuestionsInfo> selectHotakeAiInterviewQuestionsInfoList(HotakeAiInterviewQuestionsInfo hotakeAiInterviewQuestionsInfo);
|
||||
|
||||
/**
|
||||
* 新增AI面试问题信息
|
||||
*
|
||||
* @param hotakeAiInterviewQuestionsInfo AI面试问题信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertHotakeAiInterviewQuestionsInfo(HotakeAiInterviewQuestionsInfo hotakeAiInterviewQuestionsInfo);
|
||||
|
||||
/**
|
||||
* 修改AI面试问题信息
|
||||
*
|
||||
* @param hotakeAiInterviewQuestionsInfo AI面试问题信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateHotakeAiInterviewQuestionsInfo(HotakeAiInterviewQuestionsInfo hotakeAiInterviewQuestionsInfo);
|
||||
|
||||
/**
|
||||
* 删除AI面试问题信息
|
||||
*
|
||||
* @param id AI面试问题信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeAiInterviewQuestionsInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除AI面试问题信息
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeAiInterviewQuestionsInfoByIds(Long[] ids);
|
||||
/**
|
||||
* 批量新增AI面试问题信息
|
||||
*
|
||||
* @param hotakeAiInterviewQuestionsInfoList AI面试问题信息列表
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchInsertHotakeAiInterviewQuestionsInfo(List<HotakeAiInterviewQuestionsInfo> hotakeAiInterviewQuestionsInfoList);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user