forked from kidgrow-microservices-platform

dougang
2021-04-08 6d0fee3cdc8cb213d0388ffa2e7ed7a091a1ea4c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.kidgrow.oprationcenter.mapper;
 
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.kidgrow.db.mapper.SuperMapper;
import com.kidgrow.oprationcenter.model.AdvisoryDoctorInfo;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: <br>
 * @Project: <br>
 * @CreateDate: Created in 2021/3/1 14:38 <br>
 * @Author: <a href="78125310@kidgrow.com">dougang</a>
 */
public interface AdvisoryDoctorInfoMapper extends SuperMapper<AdvisoryDoctorInfo> {
 
    /**
     * 获取咨询医生列表
     *
     * @return
     */
    List<AdvisoryDoctorInfo> findList(Page<AdvisoryDoctorInfo> page, @Param("p") Map<String, Object> params);
 
    /**
     * 删除
     *
     * @param id
     * @return
     */
    int removeById(@Param("id") Long id);
 
    /**
     * 根据条件查询
     *
     * @param params
     * @return
     */
    List<AdvisoryDoctorInfo> findByObject(@Param("p") Map<String, Object> params);
}