liyg 3 years ago
parent
commit
5e22c4feb7

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

@@ -699,11 +699,12 @@ public class BMSController extends BaseRESTfulController {
                                                  Integer apiId,
                                                  String startTime,
                                                  String endTime,
-                                                      Integer feeType){
+                                                      Integer feeType,
+                                                      String con){
         if (mapVal == null) {
             mapVal = new HashMap<>();
         }
-        return bmsshipFeign.selectPortFeeSecondList(mapVal, pageNum, pageSize, apiId, startTime, feeType,endTime);
+        return bmsshipFeign.selectPortFeeSecondList(mapVal, pageNum, pageSize, apiId, startTime, feeType,endTime,con);
     }
 
     /**

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

@@ -285,7 +285,8 @@ public interface BmsshipFeign {
                                                 @RequestParam("apiId") Integer apiId,
                                                 @RequestParam("startTime") String startTime,
                                                 @RequestParam("feeType")Integer feeType,
-                                                @RequestParam("endTime") String endTime);
+                                                @RequestParam("endTime") String endTime,
+                                                @RequestParam("con") String con);
 
     @PostMapping(value = "/api/v1/bmsship/bmsporthandlingfee/getBmsshipFee/{id}")
     Map<String, Object> getBmsshipFee(@PathVariable("id") Integer id);