|
@@ -452,6 +452,27 @@ public interface TmsTruckFeign {
|
|
//发送留皮计量委托
|
|
//发送留皮计量委托
|
|
@GetMapping("api/v1/truckTms/tmstruckmeasurecommissions/sendLiuPiMeasureCommission")
|
|
@GetMapping("api/v1/truckTms/tmstruckmeasurecommissions/sendLiuPiMeasureCommission")
|
|
Map<String, Object> sendLiuPiMeasureCommission(@RequestParam("capacityNumber")String capacityNumber);
|
|
Map<String, Object> sendLiuPiMeasureCommission(@RequestParam("capacityNumber")String capacityNumber);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @PostMapping("api/v1/truckTms/statisticalReport/getLoading")
|
|
|
|
+ Map<String, Object> getLoading(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
+ @RequestParam Integer apiId,
|
|
|
|
+ @RequestParam Integer pageNum,
|
|
|
|
+ @RequestParam Integer pageSize,
|
|
|
|
+ @RequestParam String startTime,
|
|
|
|
+ @RequestParam String endTime);
|
|
|
|
+
|
|
|
|
+ @PostMapping("api/v1/truckTms/statisticalReport/getUnLoading")
|
|
|
|
+ Map<String, Object> getUnLoading(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
|
+ @RequestParam Integer apiId,
|
|
|
|
+ @RequestParam Integer pageNum,
|
|
|
|
+ @RequestParam Integer pageSize,
|
|
|
|
+ @RequestParam String startTime,
|
|
|
|
+ @RequestParam String endTime);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|