10 lines
346 B
Java
10 lines
346 B
Java
|
|
package com.ruoyi.cms.mapper;
|
||
|
|
|
||
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||
|
|
import com.ruoyi.cms.domain.InterviewInvitation;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
public interface InterviewInvitationMapper extends BaseMapper<InterviewInvitation> {
|
||
|
|
List<InterviewInvitation> getInterviewInvitationList(InterviewInvitation interviewInvitation);
|
||
|
|
}
|