会议记录和面试记录的逻辑初始化
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
package com.vetti.hotake.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.vetti.hotake.domain.HotakeInterviewDetail;
|
||||
|
||||
/**
|
||||
* 面试信息明细Mapper接口
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-09
|
||||
*/
|
||||
public interface HotakeInterviewDetailMapper
|
||||
{
|
||||
/**
|
||||
* 查询面试信息明细
|
||||
*
|
||||
* @param id 面试信息明细主键
|
||||
* @return 面试信息明细
|
||||
*/
|
||||
public HotakeInterviewDetail selectHotakeInterviewDetailById(Long id);
|
||||
|
||||
/**
|
||||
* 查询面试信息明细列表
|
||||
*
|
||||
* @param hotakeInterviewDetail 面试信息明细
|
||||
* @return 面试信息明细集合
|
||||
*/
|
||||
public List<HotakeInterviewDetail> selectHotakeInterviewDetailList(HotakeInterviewDetail hotakeInterviewDetail);
|
||||
|
||||
/**
|
||||
* 新增面试信息明细
|
||||
*
|
||||
* @param hotakeInterviewDetail 面试信息明细
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertHotakeInterviewDetail(HotakeInterviewDetail hotakeInterviewDetail);
|
||||
|
||||
/**
|
||||
* 修改面试信息明细
|
||||
*
|
||||
* @param hotakeInterviewDetail 面试信息明细
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateHotakeInterviewDetail(HotakeInterviewDetail hotakeInterviewDetail);
|
||||
|
||||
/**
|
||||
* 删除面试信息明细
|
||||
*
|
||||
* @param id 面试信息明细主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeInterviewDetailById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除面试信息明细
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeInterviewDetailByIds(Long[] ids);
|
||||
/**
|
||||
* 批量新增面试信息明细
|
||||
*
|
||||
* @param hotakeInterviewDetailList 面试信息明细列表
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchInsertHotakeInterviewDetail(List<HotakeInterviewDetail> hotakeInterviewDetailList);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
package com.vetti.hotake.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.vetti.hotake.domain.HotakeInterviewInfo;
|
||||
|
||||
/**
|
||||
* 面试信息Mapper接口
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-09
|
||||
*/
|
||||
public interface HotakeInterviewInfoMapper
|
||||
{
|
||||
/**
|
||||
* 查询面试信息
|
||||
*
|
||||
* @param id 面试信息主键
|
||||
* @return 面试信息
|
||||
*/
|
||||
public HotakeInterviewInfo selectHotakeInterviewInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询面试信息列表
|
||||
*
|
||||
* @param hotakeInterviewInfo 面试信息
|
||||
* @return 面试信息集合
|
||||
*/
|
||||
public List<HotakeInterviewInfo> selectHotakeInterviewInfoList(HotakeInterviewInfo hotakeInterviewInfo);
|
||||
|
||||
/**
|
||||
* 新增面试信息
|
||||
*
|
||||
* @param hotakeInterviewInfo 面试信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertHotakeInterviewInfo(HotakeInterviewInfo hotakeInterviewInfo);
|
||||
|
||||
/**
|
||||
* 修改面试信息
|
||||
*
|
||||
* @param hotakeInterviewInfo 面试信息
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateHotakeInterviewInfo(HotakeInterviewInfo hotakeInterviewInfo);
|
||||
|
||||
/**
|
||||
* 删除面试信息
|
||||
*
|
||||
* @param id 面试信息主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeInterviewInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除面试信息
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeInterviewInfoByIds(Long[] ids);
|
||||
/**
|
||||
* 批量新增面试信息
|
||||
*
|
||||
* @param hotakeInterviewInfoList 面试信息列表
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchInsertHotakeInterviewInfo(List<HotakeInterviewInfo> hotakeInterviewInfoList);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
package com.vetti.hotake.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.vetti.hotake.domain.HotakeMeetingCalendarDetail;
|
||||
|
||||
/**
|
||||
* 会议日历记录明细Mapper接口
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-09
|
||||
*/
|
||||
public interface HotakeMeetingCalendarDetailMapper
|
||||
{
|
||||
/**
|
||||
* 查询会议日历记录明细
|
||||
*
|
||||
* @param id 会议日历记录明细主键
|
||||
* @return 会议日历记录明细
|
||||
*/
|
||||
public HotakeMeetingCalendarDetail selectHotakeMeetingCalendarDetailById(Long id);
|
||||
|
||||
/**
|
||||
* 查询会议日历记录明细列表
|
||||
*
|
||||
* @param hotakeMeetingCalendarDetail 会议日历记录明细
|
||||
* @return 会议日历记录明细集合
|
||||
*/
|
||||
public List<HotakeMeetingCalendarDetail> selectHotakeMeetingCalendarDetailList(HotakeMeetingCalendarDetail hotakeMeetingCalendarDetail);
|
||||
|
||||
/**
|
||||
* 新增会议日历记录明细
|
||||
*
|
||||
* @param hotakeMeetingCalendarDetail 会议日历记录明细
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertHotakeMeetingCalendarDetail(HotakeMeetingCalendarDetail hotakeMeetingCalendarDetail);
|
||||
|
||||
/**
|
||||
* 修改会议日历记录明细
|
||||
*
|
||||
* @param hotakeMeetingCalendarDetail 会议日历记录明细
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateHotakeMeetingCalendarDetail(HotakeMeetingCalendarDetail hotakeMeetingCalendarDetail);
|
||||
|
||||
/**
|
||||
* 删除会议日历记录明细
|
||||
*
|
||||
* @param id 会议日历记录明细主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeMeetingCalendarDetailById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除会议日历记录明细
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeMeetingCalendarDetailByIds(Long[] ids);
|
||||
/**
|
||||
* 批量新增会议日历记录明细
|
||||
*
|
||||
* @param hotakeMeetingCalendarDetailList 会议日历记录明细列表
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchInsertHotakeMeetingCalendarDetail(List<HotakeMeetingCalendarDetail> hotakeMeetingCalendarDetailList);
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
package com.vetti.hotake.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.vetti.hotake.domain.HotakeMeetingCalendarInfo;
|
||||
|
||||
/**
|
||||
* 会议日历记录主Mapper接口
|
||||
*
|
||||
* @author wangxiangshun
|
||||
* @date 2025-11-09
|
||||
*/
|
||||
public interface HotakeMeetingCalendarInfoMapper
|
||||
{
|
||||
/**
|
||||
* 查询会议日历记录主
|
||||
*
|
||||
* @param id 会议日历记录主主键
|
||||
* @return 会议日历记录主
|
||||
*/
|
||||
public HotakeMeetingCalendarInfo selectHotakeMeetingCalendarInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 查询会议日历记录主列表
|
||||
*
|
||||
* @param hotakeMeetingCalendarInfo 会议日历记录主
|
||||
* @return 会议日历记录主集合
|
||||
*/
|
||||
public List<HotakeMeetingCalendarInfo> selectHotakeMeetingCalendarInfoList(HotakeMeetingCalendarInfo hotakeMeetingCalendarInfo);
|
||||
|
||||
/**
|
||||
* 新增会议日历记录主
|
||||
*
|
||||
* @param hotakeMeetingCalendarInfo 会议日历记录主
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertHotakeMeetingCalendarInfo(HotakeMeetingCalendarInfo hotakeMeetingCalendarInfo);
|
||||
|
||||
/**
|
||||
* 修改会议日历记录主
|
||||
*
|
||||
* @param hotakeMeetingCalendarInfo 会议日历记录主
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateHotakeMeetingCalendarInfo(HotakeMeetingCalendarInfo hotakeMeetingCalendarInfo);
|
||||
|
||||
/**
|
||||
* 删除会议日历记录主
|
||||
*
|
||||
* @param id 会议日历记录主主键
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeMeetingCalendarInfoById(Long id);
|
||||
|
||||
/**
|
||||
* 批量删除会议日历记录主
|
||||
*
|
||||
* @param ids 需要删除的数据主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteHotakeMeetingCalendarInfoByIds(Long[] ids);
|
||||
/**
|
||||
* 批量新增会议日历记录主
|
||||
*
|
||||
* @param hotakeMeetingCalendarInfoList 会议日历记录主列表
|
||||
* @return 结果
|
||||
*/
|
||||
public int batchInsertHotakeMeetingCalendarInfo(List<HotakeMeetingCalendarInfo> hotakeMeetingCalendarInfoList);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user