|
@@ -1,5 +1,6 @@
|
|
|
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);
|
|
|
+
|
|
|
/**
|
|
|
* 展示货权转移
|
|
|
*
|
|
@@ -757,8 +771,11 @@ public interface TmsshipFeign {
|
|
|
@PostMapping(value = "/api/v1/shipTms/dilbatchs/getShipNameList")
|
|
|
Map<String, Object> getShipNameList(@RequestParam(value = "state")String state);
|
|
|
|
|
|
- @ApiOperation(value = "查看货权转移图片")
|
|
|
+ // 根据用户输入提货联系人模糊查询提货联系人、提货人身份证号、联系电话
|
|
|
+ @PostMapping("/api/v1/shipTms/dilbatchs/getPersonByName")
|
|
|
+ Map<String, Object> getPersonByName(@RequestParam(value ="personName")String personName);
|
|
|
+
|
|
|
+
|
|
|
@PostMapping(value = "api/v1/shipTms/amsshipdeliverynotices/downLoadDeilveryNotice")
|
|
|
Map<String, Object> downLoadDeilveryNotice(@RequestParam("noticeId") Integer noticeId);
|
|
|
-
|
|
|
}
|