|
@@ -145,7 +145,9 @@ public interface TmsTruckFeign {
|
|
|
@RequestParam("orderType") Integer orderType,
|
|
|
@RequestParam("con") String con,
|
|
|
@RequestParam("userId") String userId,
|
|
|
- @RequestParam("userIds") String userIds
|
|
|
+ @RequestParam("userIds") String userIds,
|
|
|
+ @RequestParam("startTime")String startTime,
|
|
|
+ @RequestParam("endTime")String endTime
|
|
|
);
|
|
|
|
|
|
@PostMapping("api/v1/truckTms/tmstruckweightresults/getAllJiPiResult")
|
|
@@ -156,7 +158,9 @@ public interface TmsTruckFeign {
|
|
|
@RequestParam("orderType") Integer orderType,
|
|
|
@RequestParam("con") String con,
|
|
|
@RequestParam("userId")String userId,
|
|
|
- @RequestParam("userIds")String userIds);
|
|
|
+ @RequestParam("userIds")String userIds,
|
|
|
+ @RequestParam("startTime")String startTime,
|
|
|
+ @RequestParam("endTime")String endTime);
|
|
|
|
|
|
@PostMapping("api/v1/truckTms/tmstruckweightresults/addJiMaoResult")
|
|
|
public Map<String, Object> addJiMaoResult(@RequestBody Map<String, Object> mapValue);
|
|
@@ -177,7 +181,9 @@ public interface TmsTruckFeign {
|
|
|
@RequestParam("orderType") Integer orderType,
|
|
|
@RequestParam("con") String con,
|
|
|
@RequestParam("userId") String userId,
|
|
|
- @RequestParam("userIds") String userIds
|
|
|
+ @RequestParam("userIds") String userIds,
|
|
|
+ @RequestParam("startTime")String startTime,
|
|
|
+ @RequestParam("endTime")String endTime
|
|
|
);
|
|
|
|
|
|
@PostMapping("api/v1/truckTms/tmstruckunloadresult/addUnloadResult")
|
|
@@ -191,13 +197,15 @@ public interface TmsTruckFeign {
|
|
|
*/
|
|
|
|
|
|
|
|
|
- @PostMapping("api/v1/truckTms/tmstruckreceiptresults/getReceiveResult")
|
|
|
+ @PostMapping("api/v1/truckTms/tmstruckreciveresult/getReceiveResult")
|
|
|
public Map<String, Object> getReceiveResult(@RequestBody(required=false) Map<String,Object> mapValue,
|
|
|
@RequestParam("apiId") Integer apiId,
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("orderType") Integer orderType,
|
|
|
- @RequestParam("con") String con);
|
|
|
+ @RequestParam("con") String con,
|
|
|
+ @RequestParam("startTime")String startTime,
|
|
|
+ @RequestParam("endTime")String endTime);
|
|
|
|
|
|
/*
|
|
|
TmstruckLeaveFactoryResultController
|
|
@@ -239,7 +247,9 @@ public interface TmsTruckFeign {
|
|
|
@RequestParam("pageNum") Integer pageNum,
|
|
|
@RequestParam("pageSize") Integer pageSize,
|
|
|
@RequestParam("orderType") Integer orderType,
|
|
|
- @RequestParam("con")String con);
|
|
|
+ @RequestParam("con")String con,
|
|
|
+ @RequestParam("startTime")String startTime,
|
|
|
+ @RequestParam("endTime")String endTime);
|
|
|
|
|
|
|
|
|
@PostMapping("api/v1/truckTms/tmstruckqualityresults/getQualityResultById/{resultId}")
|