5bf3d80d145aadd79d1a8be0208e98592a5cea47.svn-base 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.synyi.edc.service.impl;
  2. import java.util.List;
  3. import javax.annotation.Resource;
  4. import org.springframework.stereotype.Service;
  5. import com.synyi.edc.dao.ISqlbuilderDao;
  6. import com.synyi.edc.pojo.Parameter;
  7. import com.synyi.edc.service.ISqlbuilderService;
  8. /**
  9. * 连接数据库查询service
  10. * @author wy
  11. *
  12. */
  13. @Service("sqlbuilderService")
  14. public class SqlbuilderServiceImpl implements ISqlbuilderService {
  15. @Resource
  16. private ISqlbuilderDao dao;
  17. /**
  18. * 获取所有的医院列表
  19. */
  20. @Override
  21. public List<Parameter> getAllOrgInfo() {
  22. // TODO Auto-generated method stub
  23. return this.dao.getAllOrgInfo();
  24. }
  25. /**
  26. * 获取检验名称
  27. */
  28. @Override
  29. public List<Parameter> getAllLabInfo(Parameter labname) {
  30. // TODO Auto-generated method stub
  31. return this.dao.getAllLabInfo( labname);
  32. }
  33. /**
  34. * 获取检验结果,文本结果和数字结果等suggestion列表
  35. * @param par
  36. * @return
  37. */
  38. public List<Parameter> getSuggestionList(Parameter par){
  39. return this.dao.getSuggestionList(par);
  40. }
  41. /**
  42. * 根据药品名称 模糊穷举所有药品名称
  43. * @param par 参数传递为 labName
  44. * @return
  45. */
  46. public List<Parameter> getAllDrugInfo(Parameter par){
  47. return this.dao.getAllDrugInfo(par);
  48. }
  49. }