package incheon.sgp.common.service;

import java.util.List;
import java.util.Map;

import incheon.cmm.ahm.flight.vo.G2fFlightVO;
import incheon.sgp.common.vo.SgpCmnVO;
import org.springframework.http.ResponseEntity;


public interface SgpCommonService {

    ResponseEntity<?> getWeather(String x, String y);

    SgpCmnVO selectUrbTrgtParcelByPoint(Map<String, Object> param) throws Exception;

    List<G2fFlightVO> getFlightList();
}
