package com.diagbot.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.diagbot.dto.HosRelationNumDTO; import com.diagbot.entity.DrugConfig; import com.diagbot.vo.DrugConfigPageVO; import com.diagbot.vo.HosRelationNumPageVO; import org.apache.ibatis.annotations.Param; /** *

* 药品映射表 Mapper 接口 *

* * @author zhaops * @since 2020-07-28 */ public interface DrugConfigMapper extends BaseMapper { /** * 分页查询 * * @param drugConfigPageVO * @return */ IPage getPage(@Param("drugConfigPageVO") DrugConfigPageVO drugConfigPageVO); /** * 各医院映射关系数列表 * * @param hosRelationNumPageVO * @return */ IPage getRelationNumPage(@Param("hosRelationNumPageVO") HosRelationNumPageVO hosRelationNumPageVO); }