|
@@ -1,6 +1,7 @@
|
|
|
package com.steerinfo.dil.feign;
|
|
|
|
|
|
import com.steerinfo.framework.controller.RESTfulResult;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
@@ -548,10 +549,23 @@ public interface TmsshipFeign {
|
|
|
@RequestParam Integer apiId,
|
|
|
@RequestParam String con);
|
|
|
|
|
|
+
|
|
|
+ @PostMapping(value = "/api/v1/shipTms/dilbatchs/getBatchIdByForeign")
|
|
|
+ Map<String, Object> getBatchIdByForeign(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ @RequestParam Integer pageNum,
|
|
|
+ @RequestParam Integer pageSize,
|
|
|
+ @RequestParam Integer apiId,
|
|
|
+ @RequestParam String con);
|
|
|
+
|
|
|
//获取船运物资id
|
|
|
@GetMapping("/api/v1/shipTms/amsshipcargotransferresults/getMaterialId")
|
|
|
Map<String,Object> getMaterialId();
|
|
|
|
|
|
+ //船舶动态表
|
|
|
+ @PostMapping("api/v1/shipTms/shipdynamics/selectAllShipDynamaics")
|
|
|
+ Map<String, Object> selectAllShipDynamaics(@RequestBody(required = false) Map<String,Object> map,
|
|
|
+ @RequestParam("con") String con);
|
|
|
+
|
|
|
/**
|
|
|
* 展示货权转移
|
|
|
*
|
|
@@ -762,4 +776,6 @@ public interface TmsshipFeign {
|
|
|
Map<String, Object> getPersonByName(@RequestParam(value ="personName")String personName);
|
|
|
|
|
|
|
|
|
+ @PostMapping(value = "api/v1/shipTms/amsshipdeliverynotices/downLoadDeilveryNotice")
|
|
|
+ Map<String, Object> downLoadDeilveryNotice(@RequestParam("noticeId") Integer noticeId);
|
|
|
}
|