package com.yuanchu.mom.service;
|
|
import com.yuanchu.mom.pojo.ManageMeetingParticipants;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.yuanchu.mom.vo.MeetingParticipantsDetailsVo;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author
|
* @since 2024-11-11 09:34:27
|
*/
|
public interface ManageMeetingParticipantsService extends IService<ManageMeetingParticipants> {
|
|
|
|
MeetingParticipantsDetailsVo getParticipants(Integer id);
|
}
|