1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.sinata.rest.modular.member.service;
|
|
| import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.sinata.rest.modular.member.model.MyDoctor;
|
| import java.util.List;
|
| /**
| * <p>
| * 美牙医生 服务类
| * </p>
| *
| * @author fq
| * @since 2023-03-11
| */
| public interface IMyDoctorService extends IService<MyDoctor> {
|
| List<MyDoctor> getDoctorList(Integer level, String cityCode, Integer memberId, Page<MyDoctor> page,String doctorName );
|
|
| }
|
|