package com.kidgrow.oprationcenter.mapper; import com.kidgrow.oprationcenter.model.DataNeed; import com.kidgrow.db.mapper.SuperMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import org.apache.ibatis.annotations.Param; import java.util.List; import java.util.Map; /** * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020
* @Description: 医生的数据需求
* @Project: 用户中心
* @CreateDate: Created in 2020-04-01 09:37:04
* @Author: liuke * @version 1.0 */ public interface DataNeedMapper extends SuperMapper { /** * 分页查询医生的数据需求列表 * @param page * @param params * @return */ List findList(Page page, @Param("p") Map params); /** * 根据DataNeed对象当做查询条件进行查询 * @param * @return DataNeed对象 */ DataNeed findByObject(@Param("p") DataNeed dataNeed); }