新增面试邀约功能
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user