21dabbcb071ecaf32e269c6892e39e04fc16a9d8.svn-base 725 B

1234567891011121314151617181920212223242526272829303132
  1. package com.synyi.edc.service;
  2. import java.util.List;
  3. import com.synyi.edc.pojo.Parameter;
  4. /**
  5. * 查询数据库接口
  6. * @author wy
  7. *
  8. */
  9. public interface ISqlbuilderService {
  10. /**
  11. * 获取所有的医院列表
  12. */
  13. public List<Parameter> getAllOrgInfo();
  14. /**
  15. * 获取检验名称
  16. */
  17. public List<Parameter> getAllLabInfo(Parameter labname);
  18. /**
  19. * 获取检验结果,文本结果和数字结果等suggestion列表
  20. * @param par
  21. * @return
  22. */
  23. public List<Parameter> getSuggestionList(Parameter par);
  24. /**
  25. * 根据药品名称 模糊穷举所有药品名称
  26. * @param par 参数传递为 labName
  27. * @return
  28. */
  29. public List<Parameter> getAllDrugInfo(Parameter par);
  30. }