|
|
@@ -537,11 +537,18 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsFeign.purchaseTrainLoadReport(map == null ? new HashMap<>() : map, apiId, pageNum, pageSize);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "修改火运装车")
|
|
|
@PostMapping("/updateTrainLoad")
|
|
|
public Map<String, Object> updateTrainLoad(@RequestBody(required = false) Map<String, Object> map){
|
|
|
return tmsFeign.updateTrainLoad(map);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "修改火运装车序号")
|
|
|
+ @PostMapping("/updateTrainLoadSeq")
|
|
|
+ public Map<String, Object> updateTrainLoadSeq(@RequestBody(required = false) Map<String, Object> map){
|
|
|
+ return tmsFeign.updateTrainLoadSeq(map);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "采购火运计量作业")
|
|
|
@ApiImplicitParam(name = "map", value = "JSON格式数据", required = true, dataType = "Map<String, Object>")
|
|
|
@PostMapping(value = "/purchaseTrainWeight")
|