package com.ruoyi.cms.service; import com.ruoyi.cms.domain.InterviewInvitation; import com.ruoyi.cms.domain.vo.InterviewInvitationVO; import java.util.List; /** * 面试邀约 * * @author * @email * @date 2025-10-10 10:42:16 */ public interface InterviewInvitationService { List getInterviewInvitationList(InterviewInvitation interviewInvitation); List getInterviewInvitationVOList(InterviewInvitation interviewInvitation); int insertInterviewInvitation(InterviewInvitation interviewInvitation); int updateInterviewInvitation(InterviewInvitation interviewInvitation); int deleteInterviewInvitationIds(Long[] ids); InterviewInvitation getInterviewInvitationById(Long id); InterviewInvitationVO getInterviewInvitationVOById(Long id); int updateInterviewStatus(Long id, String status); }