|
@@ -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);
|
|
|
+ }
|
|
|
}
|