|
@@ -4,10 +4,7 @@ import com.steerinfo.framework.controller.RESTfulResult;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
import org.springframework.http.MediaType;
|
|
import org.springframework.http.MediaType;
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestPart;
|
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import java.util.HashMap;
|
|
import java.util.HashMap;
|
|
@@ -108,4 +105,6 @@ public interface OtmsFeign {
|
|
@RequestParam String startTime,
|
|
@RequestParam String startTime,
|
|
@RequestParam String endTime
|
|
@RequestParam String endTime
|
|
);
|
|
);
|
|
|
|
+ @GetMapping("/api/v1/otms/pathDisplay/getCurrentLocation")
|
|
|
|
+ public RESTfulResult getCurrentLocation(@RequestParam("capcityNumber") String capcityNumber) throws Exception;
|
|
}
|
|
}
|