yaowanxin
6 天以前 e0ba02eb14e31451293a93dafd285b279d9a7775
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);
}