package com.gis3c.ol.service; import com.gis3c.ol.entity.Source; import java.util.Collection; import java.util.List; import java.util.Set; /** * Created by hukekuan on 2017/12/15. */ public interface SourceService { public List findAllList(); public List> findSourcesByPage(Integer pageSize,Integer currentPage); public Source findSourceById(String sourceId); public Source findSourceByName(String sourceName); public List findSourceByType(String[] sourceTypes,String projection); public Integer insertSource(Source source); public Integer deleteSourcesById(Set sourceIds); }