Parcourir la source

'司机接单'

HUJIANGUO il y a 3 ans
Parent
commit
2d0997313a

+ 2 - 3
src/main/java/com/steerinfo/dil/controller/AMScontroller.java

@@ -1133,9 +1133,8 @@ public class AMScontroller{
     public Map<String, Object> getPurchaseIdByBatch(@RequestBody(required = false) Map<String,Object> mapValue,
                                                           Integer pageNum,
                                                           Integer pageSize,
-                                                          Integer apiId,
-                                                          String con) {
-        return amsFeign.getPurchaseIdByBatch(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId, con);
+                                                          Integer apiId) {
+        return amsFeign.getPurchaseIdByBatch(mapValue==null?new HashMap<>():mapValue, pageNum, pageSize, apiId);
     }
 
     @ApiModelProperty(value = "仓库模代框")

+ 1 - 2
src/main/java/com/steerinfo/dil/feign/AmsFeign.java

@@ -1175,8 +1175,7 @@ public interface AmsFeign {
     Map<String, Object> getPurchaseIdByBatch(@RequestBody(required = false) Map<String,Object> mapValue,
                                              @RequestParam Integer pageNum,
                                              @RequestParam Integer pageSize,
-                                             @RequestParam Integer apiId,
-                                             @RequestParam String con);
+                                             @RequestParam Integer apiId);
 
     @GetMapping("/api/v1/ams/amstruckinwardrequirement/getCapacityType")
     Map<String, Object> getCapacityType();