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