dfc042295d2bd256d1fde44906d0148a2905a04a.svn-base 282 B

1234567891011121314
  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. public List<Parameter> getAllOrgInfo();
  11. public List<Parameter> getAllLabInfo(Parameter labname);
  12. }