|
@@ -700,6 +700,33 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsshipFeign.selectAllShipDynamaics(map,con);
|
|
|
}
|
|
|
|
|
|
+ //万州港装车数据
|
|
|
+ @PostMapping("/getLoadData")
|
|
|
+ Map<String, Object> getLoadData(@RequestBody(required = false) Map<String,Object> map){
|
|
|
+ if (map==null){
|
|
|
+ map=new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsshipFeign.getLoadData(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ //万州港卸船数据
|
|
|
+ @PostMapping("/getUnloadData")
|
|
|
+ Map<String, Object> getUnloadData(@RequestBody(required = false) Map<String,Object> map){
|
|
|
+ if (map==null){
|
|
|
+ map=new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsshipFeign.getUnloadData(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ //下游港口船舶动态表
|
|
|
+ @PostMapping("/getDownShipDynamaics")
|
|
|
+ Map<String, Object> getDownShipDynamaics(@RequestBody(required = false) Map<String,Object> map){
|
|
|
+ if (map==null){
|
|
|
+ map=new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsshipFeign.getDownShipDynamaics(map);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 下拉框
|
|
|
*
|
|
@@ -2551,5 +2578,17 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsTruckFeign.sendMeaage(mobile,content);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 修改三程船装船作业明细
|
|
|
+ * @param
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping("/updateThreeSectionDetails")
|
|
|
+ public Map<String,Object> updateThreeSectionDetails(@RequestBody(required = false) Map<String, Object> mapVal){
|
|
|
+ if (mapVal == null) {
|
|
|
+ mapVal = new HashMap<>();
|
|
|
+ }
|
|
|
+ return tmsshipFeign.updateThreeSectionDetails(mapVal);
|
|
|
+ }
|
|
|
|
|
|
}
|