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