2026-06-24 09:31:29 +08:00
|
|
|
package com.ruoyi.cms.mapper;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
|
import com.ruoyi.cms.domain.InterviewInvitation;
|
2026-06-24 18:18:55 +08:00
|
|
|
import com.ruoyi.cms.domain.vo.InterviewInvitationVO;
|
2026-06-24 09:31:29 +08:00
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public interface InterviewInvitationMapper extends BaseMapper<InterviewInvitation> {
|
|
|
|
|
List<InterviewInvitation> getInterviewInvitationList(InterviewInvitation interviewInvitation);
|
2026-06-24 18:18:55 +08:00
|
|
|
|
|
|
|
|
List<InterviewInvitationVO> getInterviewInvitationVOList(InterviewInvitation interviewInvitation);
|
2026-06-24 09:31:29 +08:00
|
|
|
}
|