|
@@ -180,6 +180,12 @@ public class TMSController extends BaseRESTfulController {
|
|
return tmsshipFeign.getShipLocation(locationId);
|
|
return tmsshipFeign.getShipLocation(locationId);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @PostMapping("/getWareHouseOutresult/{resultId}")
|
|
|
|
+ @ApiOperation(value = "查询港口出库")
|
|
|
|
+ Map<String, Object> getWareHouseOutresult(@PathVariable("resultId") BigDecimal resultId) {
|
|
|
|
+ return tmsTrainFeign.getWareHouseOutresult(resultId);
|
|
|
|
+ }
|
|
|
|
+
|
|
@PostMapping("selectShipLocation/{locationId}")
|
|
@PostMapping("selectShipLocation/{locationId}")
|
|
@ApiOperation(value = "通过id查询位置作业")
|
|
@ApiOperation(value = "通过id查询位置作业")
|
|
Map<String, Object> selectShipLocation(@PathVariable("locationId") BigDecimal locationId) {
|
|
Map<String, Object> selectShipLocation(@PathVariable("locationId") BigDecimal locationId) {
|
|
@@ -817,6 +823,16 @@ public class TMSController extends BaseRESTfulController {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "修改港口出库")
|
|
|
|
+ @ApiImplicitParams({
|
|
|
|
+ @ApiImplicitParam(name = "tmstrainLoadingResult", value = "车皮装车对象", required = false, dataType = "TmstrainLoadingResult")
|
|
|
|
+ })
|
|
|
|
+ @PostMapping(value = "/updateWarehouseResult")
|
|
|
|
+ public Map<String, Object> updateWarehouseResult(@RequestBody(required = false) Map<String, Object> map) {
|
|
|
|
+ return tmsTrainFeign.updateWarehouseResult(map);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
@ApiOperation(value = "新增车皮装车作业实绩")
|
|
@ApiOperation(value = "新增车皮装车作业实绩")
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParam(name = "tmstrainLoadingResult", value = "车皮装车对象", required = false, dataType = "TmstrainLoadingResult")
|
|
@ApiImplicitParam(name = "tmstrainLoadingResult", value = "车皮装车对象", required = false, dataType = "TmstrainLoadingResult")
|