|
@@ -307,6 +307,10 @@ public interface BmsshipFeign {
|
|
|
@PostMapping(value = "/api/v1/bmsship/bmsporthandlingfee/findBatchHavingLoad")
|
|
|
Map<String,Object> findBatchHavingLoad(String con);
|
|
|
|
|
|
- @PostMapping(value = "/api/v1/bmsship/bmsporthandlingfee/findLoadByBatch/{batchId}")
|
|
|
- Map<String,Object> findLoadByBatch(@PathVariable("batchId")BigDecimal batchId);
|
|
|
+ @PostMapping(value = "/api/v1/bmsship/bmsporthandlingfee/findLoadByBatch")
|
|
|
+ Map<String, Object> findLoadByBatch(@RequestBody(required = false)Map<String, Object> mapVal,
|
|
|
+ @RequestParam("pageNum")Integer pageNum,
|
|
|
+ @RequestParam("pageSize")Integer pageSize,
|
|
|
+ @RequestParam("apiId") Integer apiId,
|
|
|
+ @RequestParam("batchId") BigDecimal batchId);
|
|
|
}
|