预约面试功能开发

This commit is contained in:
francis-fh
2026-06-24 18:18:55 +08:00
parent a3cd9b0277
commit f51b1a3ce1
14 changed files with 354 additions and 23 deletions

View File

@@ -1,6 +1,7 @@
package com.ruoyi.cms.service;
import com.ruoyi.cms.domain.InterviewInvitation;
import com.ruoyi.cms.domain.vo.InterviewInvitationVO;
import java.util.List;
@@ -15,6 +16,8 @@ public interface InterviewInvitationService {
List<InterviewInvitation> getInterviewInvitationList(InterviewInvitation interviewInvitation);
List<InterviewInvitationVO> getInterviewInvitationVOList(InterviewInvitation interviewInvitation);
int insertInterviewInvitation(InterviewInvitation interviewInvitation);
int updateInterviewInvitation(InterviewInvitation interviewInvitation);
@@ -23,5 +26,7 @@ public interface InterviewInvitationService {
InterviewInvitation getInterviewInvitationById(Long id);
InterviewInvitationVO getInterviewInvitationVOById(Long id);
int updateInterviewStatus(Long id, String status);
}