RouteService.java 570 B

123456789101112131415161718
  1. package com.steerinfo.route.service;
  2. import com.steerinfo.route.vo.Map.RouteVo;
  3. import java.util.HashMap;
  4. import java.util.Map;
  5. import java.util.concurrent.CompletableFuture;
  6. public interface RouteService {
  7. CompletableFuture<String> saveRoute(Map mapValue) throws Exception;
  8. CompletableFuture<RouteVo> fullPathVisualization(HashMap mapValue) throws Exception;
  9. public CompletableFuture<String> saveRequstionDate(Map mapValue) throws Exception;
  10. public CompletableFuture<RouteVo> fullPathVisualizationByCarNumber(HashMap mapValue) throws Exception;
  11. }