GeoDataService.java
381 Bytes
package com.bsth.service.geo_data;
import com.bsth.entity.geo_data.GeoStation;
import java.util.Map;
/**
* Created by panzhao on 2017/12/7.
*/
public interface GeoDataService {
Map<String, Object> findGeoStations(String lineCode);
Map<String, Object> findGeoRoad(String lineCode);
Map<String,Object> updateBufferInfo(GeoStation station);
}