|
|
@@ -550,6 +550,13 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsFeign.updateTrainLoad(map);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "删除火运装车", notes = "删除火运装车")
|
|
|
+ @PostMapping(value = "/deleteTrainLoad")
|
|
|
+ @LogAround(foreignKeys = {"transOrderId"},foreignKeyTypes = {"运输订单"})
|
|
|
+ public Map<String, Object> deleteTrainLoad(@RequestBody(required = false) Map<String ,Object> map) {
|
|
|
+ return tmsFeign.deleteTrainLoad(map);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "修改火运装车序号")
|
|
|
@PostMapping("/updateTrainLoadSeq")
|
|
|
public Map<String, Object> updateTrainLoadSeq(@RequestBody(required = false) Map<String, Object> map){
|