|
@@ -436,6 +436,14 @@ public interface TmsTruckFeign {
|
|
|
@RequestParam Integer pageSize,
|
|
|
@RequestParam String startTime,
|
|
|
@RequestParam String endTime);
|
|
|
+//内转统计报表
|
|
|
+ @PostMapping("api/v1/truckTms/statisticalReport/getInwardReport")
|
|
|
+ Map<String, Object> getInwardReport(@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/tmstruckmeasurecommissions/sendMeasureCommission")
|
|
|
Map<String, Object> sendMeasureCommission(@RequestBody(required = false) Map<String, Object> map);
|
|
@@ -444,6 +452,27 @@ public interface TmsTruckFeign {
|
|
|
//发送留皮计量委托
|
|
|
@GetMapping("api/v1/truckTms/tmstruckmeasurecommissions/sendLiuPiMeasureCommission")
|
|
|
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);
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|