package com.synyi.edc.dao; import java.util.List; import com.synyi.edc.pojo.Parameter; /** * sqlbuilder 语句生成dao * @author wy * */ public interface ISqlbuilderDao { /** * 获取所有的医院列表 * @return */ List getAllOrgInfo(); /** * 根据检查名称 模糊穷举所有检查名称 * @param par 参数传递为 labName * @return */ List getAllLabInfo(Parameter par); /** * 获取检验结果,文本结果和数字结果等suggestion列表 * @param par * @return */ List getSuggestionList(Parameter par); /** * 根据药品名称 模糊穷举所有药品名称 * @param par 参数传递为 labName * @return */ List getAllDrugInfo(Parameter par); }