|
@@ -507,6 +507,18 @@ public interface TmsTruckFeign {
|
|
@RequestParam Integer pageSize,
|
|
@RequestParam Integer pageSize,
|
|
@RequestParam String startTime,
|
|
@RequestParam String startTime,
|
|
@RequestParam String endTime);
|
|
@RequestParam String endTime);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @PostMapping("api/v1/truckTms/statisticalReport/getCapacityByDefend")
|
|
|
|
+ Map<String, Object> getCapacityByDefend(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
+ @RequestParam Integer apiId,
|
|
|
|
+ @RequestParam Integer pageNum,
|
|
|
|
+ @RequestParam Integer pageSize,
|
|
|
|
+ @RequestParam String con
|
|
|
|
+ );
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/fullPath")
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/fullPath")
|
|
public Object fullPath(@RequestParam("orderNumber") String orderNumber) throws Exception;
|
|
public Object fullPath(@RequestParam("orderNumber") String orderNumber) throws Exception;
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/getInTransitTransportation")
|
|
@PostMapping("/api/v1/truckTms/pathDisplay/getInTransitTransportation")
|
|
@@ -519,6 +531,7 @@ public interface TmsTruckFeign {
|
|
|
|
|
|
@PostMapping(value = "/api/v1/truckTms/pathDisplay/addTmstruckReceiptResult", headers = "content-type=multipart/form-data",consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
@PostMapping(value = "/api/v1/truckTms/pathDisplay/addTmstruckReceiptResult", headers = "content-type=multipart/form-data",consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
|
|
public RESTfulResult addTmstruckReceiptResult(@RequestPart("file")MultipartRequest request,@RequestParam("num") Integer num,@RequestParam("orderNumber") String orderNumber, @RequestParam("resultArrivalAddress")String resultArrivalAddress,@RequestParam("imgcount3") Integer imgcount3, @RequestParam("imgcount4")Integer imgcount4);
|
|
public RESTfulResult addTmstruckReceiptResult(@RequestPart("file")MultipartRequest request,@RequestParam("num") Integer num,@RequestParam("orderNumber") String orderNumber, @RequestParam("resultArrivalAddress")String resultArrivalAddress,@RequestParam("imgcount3") Integer imgcount3, @RequestParam("imgcount4")Integer imgcount4);
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|