liyg 2 years ago
parent
commit
0299f6b78a

+ 12 - 1
src/main/java/com/steerinfo/dil/controller/TMSController.java

@@ -2544,5 +2544,16 @@ public class TMSController extends BaseRESTfulController {
         return tmsTruckFeign.getInwardSaleSteelOrder(map,startTime,endTime,remark,capacityNo,consigneeName);
     }
 
-
+    /**
+     * 修改三程船装船作业明细
+     * @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);
+    }
 }

+ 8 - 0
src/main/java/com/steerinfo/dil/feign/TmsshipFeign.java

@@ -152,6 +152,14 @@ public interface TmsshipFeign {
     @PostMapping(value = "/api/v1/shipTms/tmsshiploadshipresults/updateLoadShip")
     Map<String, Object> updateLoadShip(@RequestBody Map<String, Object> tmsshipLoadShipResult);
 
+    /**
+     * 修改三程船装船信息
+     * @param mapVal
+     * @return
+     */
+    @PostMapping(value = "/api/v1/shipTms/tmsshiploadshipresults/updateThreeSectionDetails")
+    Map<String, Object> updateThreeSectionDetails(@RequestBody(required = false)Map<String, Object> mapVal);
+
     /**
      * 新增装船作业
      *