|
@@ -329,7 +329,8 @@ public interface TmsTruckFeign {
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("apiId") Integer apiId,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
- @RequestParam("con") String con);
|
|
|
|
|
|
+ @RequestParam("con") String con,
|
|
|
|
+ @RequestParam("userId") String userId);
|
|
|
|
|
|
@PostMapping("api/v1/truckTms/tmstruckloadresults/addDaZhouToDaGangLoadResult")
|
|
@PostMapping("api/v1/truckTms/tmstruckloadresults/addDaZhouToDaGangLoadResult")
|
|
Map<String, Object> addDaZhouToDaGangLoadResult(@RequestBody(required = false)Map<String, Object> map);
|
|
Map<String, Object> addDaZhouToDaGangLoadResult(@RequestBody(required = false)Map<String, Object> map);
|
|
@@ -454,6 +455,11 @@ public interface TmsTruckFeign {
|
|
Map<String, Object> sendLiuPiMeasureCommission(@RequestParam("capacityNumber")String capacityNumber);
|
|
Map<String, Object> sendLiuPiMeasureCommission(@RequestParam("capacityNumber")String capacityNumber);
|
|
|
|
|
|
|
|
|
|
|
|
+ //新增计时作业实绩
|
|
|
|
+ @PostMapping("api/v1/truckTms/tmstrucktimetaskresults/addTimeTaskResult")
|
|
|
|
+ Map<String, Object> addTimeTaskResult(@RequestBody(required = false) Map<String, Object> map);
|
|
|
|
+
|
|
|
|
+
|
|
@PostMapping("api/v1/truckTms/statisticalReport/getLoading")
|
|
@PostMapping("api/v1/truckTms/statisticalReport/getLoading")
|
|
Map<String, Object> getLoading(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
Map<String, Object> getLoading(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
@RequestParam Integer apiId,
|
|
@RequestParam Integer apiId,
|
|
@@ -470,6 +476,16 @@ public interface TmsTruckFeign {
|
|
@RequestParam String startTime,
|
|
@RequestParam String startTime,
|
|
@RequestParam String endTime);
|
|
@RequestParam String endTime);
|
|
|
|
|
|
|
|
+
|
|
|
|
+ @PostMapping("api/v1/truckTms/tmstrucktimetaskresults/JudgeTimeTask")
|
|
|
|
+ Map<String, Object> JudgeTimeTask(@RequestBody Map<String, Object> map);
|
|
|
|
+
|
|
|
|
+ @PostMapping("api/v1/truckTms/tmstrucktimetaskresults/unitSureEndTimeout")
|
|
|
|
+ Map<String, Object> unitSureEndTimeout(@RequestBody Map<String, Object> map);
|
|
|
|
+
|
|
|
|
+ @PostMapping("api/v1/truckTms/tmstrucktimetaskresults/JudgeTimeTaskPause")
|
|
|
|
+ Map<String, Object> JudgeTimeTaskPause(@RequestBody Map<String, Object> map);
|
|
|
|
+
|
|
@PostMapping("api/v1/truckTms/statisticalReport/getLXInwardReport")
|
|
@PostMapping("api/v1/truckTms/statisticalReport/getLXInwardReport")
|
|
Map<String, Object> getLXInwardReport(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
Map<String, Object> getLXInwardReport(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
@RequestParam Integer apiId,
|
|
@RequestParam Integer apiId,
|
|
@@ -477,6 +493,7 @@ public interface TmsTruckFeign {
|
|
@RequestParam Integer pageSize,
|
|
@RequestParam Integer pageSize,
|
|
@RequestParam String startTime,
|
|
@RequestParam String startTime,
|
|
@RequestParam String endTime);
|
|
@RequestParam String endTime);
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|