package com.ruoyi.project.mapper;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import java.util.List;
|
import org.apache.ibatis.annotations.Mapper;
|
import com.ruoyi.project.domain.ServiceMeetingParticipant;
|
|
/**
|
* 参会人员Mapper接口
|
*
|
* @author ls
|
* @date 2025-12-28
|
*/
|
@Mapper
|
public interface ServiceMeetingParticipantMapper extends BaseMapper<ServiceMeetingParticipant>
|
{
|
/**
|
* 查询参会人员列表
|
*
|
* @param serviceMeetingParticipant 参会人员
|
* @return 参会人员集合
|
*/
|
public List<ServiceMeetingParticipant> selectServiceMeetingParticipantList(ServiceMeetingParticipant serviceMeetingParticipant);
|
}
|