zss
2024-12-20 c9e36e23b3f95f6027d78483dfc23021d1ec6261
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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);
}