42 lines
1.1 KiB
Java
42 lines
1.1 KiB
Java
package com.ruoyi.cms.service;
|
|
|
|
import com.ruoyi.cms.domain.InterviewInvitation;
|
|
import com.ruoyi.cms.domain.vo.InterviewInvitationVO;
|
|
import com.ruoyi.cms.domain.vo.InviteCountDTO;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 面试邀约
|
|
*
|
|
* @author
|
|
* @email
|
|
* @date 2025-10-10 10:42:16
|
|
*/
|
|
public interface InterviewInvitationService {
|
|
|
|
List<InterviewInvitation> getInterviewInvitationList(InterviewInvitation interviewInvitation);
|
|
|
|
List<InterviewInvitationVO> 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);
|
|
|
|
int updateRead(Long id);
|
|
|
|
int updateReadAll(Long userId);
|
|
|
|
InviteCountDTO selectMsyyhbs(String idCard);
|
|
|
|
int updateShowTotal(Long companyId);
|
|
}
|