zss
2025-02-19 8a9eb937345d499a90e69df764d9dac677ede35f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.manage.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.manage.pojo.ManageMeetingParticipants;
import com.ruoyi.manage.vo.MeetingParticipantsDetailsVo;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2024-11-11 09:34:27
 */
public interface ManageMeetingParticipantsService extends IService<ManageMeetingParticipants> {
 
 
 
    MeetingParticipantsDetailsVo getParticipants(Integer id);
}