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);
|
}
|