|
@@ -733,6 +733,24 @@ public class TMSController extends BaseRESTfulController {
|
|
|
return tmsshipFeign.getDownShipDynamaics(map);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("getControlLines")
|
|
|
+ @ApiOperation(value = "查询控制线等闸")
|
|
|
+ Map<String, Object> getControlLines(@RequestBody Map<String, Object> map) {
|
|
|
+ return tmsshipFeign.getControlLines(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("updateControlLine")
|
|
|
+ @ApiOperation(value = "修改控制线等闸")
|
|
|
+ Map<String, Object> updateControlLine(@RequestBody Map<String, Object> map) {
|
|
|
+ return tmsshipFeign.updateControlLine(map);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("getControlLinesTable")
|
|
|
+ @ApiOperation(value = "控制线等闸表格")
|
|
|
+ Map<String, Object> getControlLinesTable(@RequestBody Map<String, Object> map) {
|
|
|
+ return tmsshipFeign.getControlLinesTable(map);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 下拉框
|
|
|
*
|