|
@@ -148,8 +148,8 @@ public interface TmsTruckFeign {
|
|
|
@RequestParam("con") String con,
|
|
|
@RequestParam("userId") String userId,
|
|
|
@RequestParam("userIds") String userIds,
|
|
|
- @RequestParam String startTime,
|
|
|
- @RequestParam String endTime
|
|
|
+ @RequestParam("startTime")String startTime,
|
|
|
+ @RequestParam("endTime")String endTime
|
|
|
);
|
|
|
|
|
|
@PostMapping("api/v1/truckTms/tmstruckweightresults/getAllJiPiResult")
|
|
@@ -160,7 +160,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);
|
|
@@ -182,8 +184,8 @@ public interface TmsTruckFeign {
|
|
|
@RequestParam("con") String con,
|
|
|
@RequestParam("userId") String userId,
|
|
|
@RequestParam("userIds") String userIds,
|
|
|
- @RequestParam("startTime") String startTime,
|
|
|
- @RequestParam("endTime") String endTime
|
|
|
+ @RequestParam("startTime")String startTime,
|
|
|
+ @RequestParam("endTime")String endTime
|
|
|
);
|
|
|
|
|
|
@PostMapping("api/v1/truckTms/tmstruckunloadresult/addUnloadResult")
|
|
@@ -197,13 +199,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
|
|
@@ -245,7 +249,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}")
|