123456789101112131415161718 |
- 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<String> saveRoute(Map mapValue) throws Exception;
- CompletableFuture<RouteVo> fullPathVisualization(HashMap mapValue) throws Exception;
- public CompletableFuture<String> saveRequstionDate(Map mapValue) throws Exception;
- public CompletableFuture<RouteVo> fullPathVisualizationByCarNumber(HashMap mapValue) throws Exception;
- }
|