package com.steerinfo.route.service; import com.steerinfo.route.vo.Map.RouteVo; import java.util.HashMap; import java.util.Map; import java.util.concurrent.CompletableFuture; public interface RouteService { CompletableFuture saveRoute(Map mapValue) throws Exception; CompletableFuture fullPathVisualization(HashMap mapValue) throws Exception; public CompletableFuture saveRequstionDate(Map mapValue) throws Exception; public CompletableFuture fullPathVisualizationByCarNumber(HashMap mapValue) throws Exception; }