|
@@ -241,6 +241,18 @@ public class TMSController extends BaseRESTfulController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ //框计算计算货权转移中出现的批次
|
|
|
+ @PostMapping("/getBatchIdByForeign")
|
|
|
+ public Map<String, Object> getBatchIdByForeign(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer apiId,
|
|
|
+ String con){
|
|
|
+ return tmsshipFeign.getBatchIdByForeign(mapValue==null?new HashMap<String, Object>():mapValue, pageNum, pageSize, apiId, con);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 展示船只信息
|
|
|
*
|
|
@@ -651,8 +663,12 @@ public class TMSController extends BaseRESTfulController {
|
|
|
}
|
|
|
//船舶动态表
|
|
|
@PostMapping("/selectAllShipDynamaics")
|
|
|
- Map<String, Object> selectAllShipDynamaics(){
|
|
|
- return tmsshipFeign.selectAllShipDynamaics();
|
|
|
+ Map<String, Object> selectAllShipDynamaics(@RequestBody(required = false) Map<String,Object> map,
|
|
|
+ String con){
|
|
|
+ if (map==null){
|
|
|
+ map=new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsshipFeign.selectAllShipDynamaics(map,con);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -2285,10 +2301,22 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return map;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
@ApiOperation("根据船舶位置查询船舶动态")
|
|
|
@PostMapping("/getShipLocationStatus")
|
|
|
- public Map<String,Object> getShipLocationStatus(String shipLocation){
|
|
|
- Map<String,Object>map = tmsshipFeign.getShipLocationStatus(shipLocation);
|
|
|
+ public Map<String,Object> getShipLocationStatus(String shipLocation) {
|
|
|
+ Map<String, Object> map = tmsshipFeign.getShipLocationStatus(shipLocation);
|
|
|
return map;
|
|
|
}
|
|
|
+ //根据用户输入提货联系人模糊查询提货联系人、提货人身份证号、联系电话
|
|
|
+ @ApiOperation(value="根据用户输入提货联系人模糊查询提货联系人、提货人身份证号、联系电话", notes="模糊查询")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "personName",value = "用户输入的输入提货联系人", required = false, dataType = "String")
|
|
|
+ })
|
|
|
+
|
|
|
+ @PostMapping("/getPersonByName")
|
|
|
+ public Map<String,Object> getPersonByName(@RequestParam(value ="personName")String personName){
|
|
|
+ return tmsshipFeign.getPersonByName(personName);
|
|
|
+
|
|
|
+ }
|
|
|
}
|