zss
6 天以前 51ec98113c6d49d0f7eec4e3c030e55e337e97db
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);
}