|
@@ -103,7 +103,8 @@ public interface TmsTruckFeign {
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("orderType") Integer orderType,
|
|
|
- @RequestParam("con") String con,
|
|
|
+ @RequestParam("startTime") String startTime,
|
|
|
+ @RequestParam("endTime") String endTime,
|
|
|
@RequestParam("userId") String userId,
|
|
|
@RequestParam("userIds") String userIds
|
|
|
);
|
|
@@ -435,10 +436,22 @@ 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);
|
|
|
|
|
|
+
|
|
|
+ //发送留皮计量委托
|
|
|
+ @GetMapping("api/v1/truckTms/tmstruckmeasurecommissions/sendLiuPiMeasureCommission")
|
|
|
+ Map<String, Object> sendLiuPiMeasureCommission(@RequestParam("capacityNumber")String capacityNumber);
|
|
|
}
|
|
|
|
|
|
|