|
@@ -250,4 +250,9 @@ public class OTMSController {
|
|
|
@RequestParam(required = false,name = "pageSize")Integer pageSize){
|
|
|
return otmsFeign.transportationPerformance(mapValue!=null?mapValue:new HashMap<>(),apiId,pageNum,pageSize);
|
|
|
}
|
|
|
+
|
|
|
+ @GetMapping("/getLocationForAddress")
|
|
|
+ public RESTfulResult getLocationForAddress(@RequestParam("address") String address){
|
|
|
+ return otmsFeign.getLocationForAddress(address);
|
|
|
+ }
|
|
|
}
|