|
@@ -17,6 +17,13 @@ public interface OtmsFeign {
|
|
|
@RequestParam(required = true,defaultValue = "468",name = "apiId")Integer apiId,
|
|
|
@RequestParam(required = false,name = "pageNum")Integer pageNum,
|
|
|
@RequestParam(required = false,name = "pageSize")Integer pageSize);
|
|
|
+
|
|
|
+ //在途订单列表
|
|
|
+ @PostMapping("/api/v1/otms/pathDisplay/transportationPerformance")
|
|
|
+ public RESTfulResult transportationPerformance(@RequestBody Map<String,Object> mapValue,
|
|
|
+ @RequestParam(required = true,defaultValue = "468",name = "apiId")Integer apiId,
|
|
|
+ @RequestParam(required = false,name = "pageNum")Integer pageNum,
|
|
|
+ @RequestParam(required = false,name = "pageSize")Integer pageSize);
|
|
|
//已完成订单列表
|
|
|
@PostMapping("/api/v1/otms/pathDisplay/getFinishTruckOrderInfo")
|
|
|
public RESTfulResult getFinishTruckOrderInfo(@RequestBody Map<String,Object> mapValue,
|
|
@@ -107,4 +114,11 @@ public interface OtmsFeign {
|
|
|
);
|
|
|
@GetMapping("/api/v1/otms/pathDisplay/getCurrentLocation")
|
|
|
public RESTfulResult getCurrentLocation(@RequestParam("capcityNumber") String capcityNumber) throws Exception;
|
|
|
+
|
|
|
+ @PostMapping("/api/v1/otms/pathDisplay/offLineWarn")
|
|
|
+ public String offLineWarn(@RequestParam(value = "data") String data) throws Exception;
|
|
|
+ @PostMapping("/api/v1/otms/pathDisplay/parkWarn")
|
|
|
+ public String parkWarn(@RequestParam(value = "data",required = false) String data) throws Exception;
|
|
|
+ @PostMapping("/api/v1/otms/pathDisplay/abnormalLineWarn")
|
|
|
+ public String abnormalLineWarn(@RequestParam(value = "data") String data) throws Exception;
|
|
|
}
|