49 lines
1.1 KiB
Java
49 lines
1.1 KiB
Java
|
|
package com.ruoyi.cms.service;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
|
import com.ruoyi.cms.domain.InterviewInvite;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 面试邀约Service接口
|
||
|
|
*
|
||
|
|
* @author ruoyi
|
||
|
|
*/
|
||
|
|
public interface InterviewInviteService extends IService<InterviewInvite>
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* 查询面试邀约
|
||
|
|
* @param id 主键
|
||
|
|
* @return 实体
|
||
|
|
*/
|
||
|
|
InterviewInvite selectInterviewInviteById(Long id);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询面试邀约列表
|
||
|
|
* @param interviewInvite 条件
|
||
|
|
* @return 集合
|
||
|
|
*/
|
||
|
|
List<InterviewInvite> selectInterviewInviteList(InterviewInvite interviewInvite);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 新增面试邀约
|
||
|
|
* @param interviewInvite 实体
|
||
|
|
* @return 行数
|
||
|
|
*/
|
||
|
|
int insertInterviewInvite(InterviewInvite interviewInvite);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 修改面试邀约
|
||
|
|
* @param interviewInvite 实体
|
||
|
|
* @return 行数
|
||
|
|
*/
|
||
|
|
int updateInterviewInvite(InterviewInvite interviewInvite);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 批量逻辑删除面试邀约
|
||
|
|
* @param ids 主键数组
|
||
|
|
* @return 行数
|
||
|
|
*/
|
||
|
|
int deleteInterviewInviteByIds(Long[] ids);
|
||
|
|
}
|