|
|
@@ -0,0 +1,44 @@
|
|
|
+package com.railway.web.controller.business.catenary;
|
|
|
+
|
|
|
+
|
|
|
+import com.railway.business.catenary.domain.vo.BusFjxgmdVo;
|
|
|
+import com.railway.business.catenary.service.BusFjxgmdService;
|
|
|
+import com.railway.common.core.controller.BaseController;
|
|
|
+import com.railway.common.core.domain.AjaxResult;
|
|
|
+import com.railway.common.core.page.TableDataInfo;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
+import org.springframework.web.bind.annotation.PostMapping;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 附加悬挂锚段 前端控制器
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author railway
|
|
|
+ * @since 2021-10-11
|
|
|
+ */
|
|
|
+@Api(tags = "附加悬挂锚段")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/busFjxgmd")
|
|
|
+public class BusFjxgmdController extends BaseController {
|
|
|
+
|
|
|
+ private final BusFjxgmdService busFjxgmdService;
|
|
|
+
|
|
|
+ public BusFjxgmdController(BusFjxgmdService busFjxgmdService) {
|
|
|
+ this.busFjxgmdService = busFjxgmdService;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value = "通过支柱信息获取对锚列表", notes = "通过支柱信息获取对锚列表", response = AjaxResult.class)
|
|
|
+ @PostMapping("/getListByZz")
|
|
|
+ public TableDataInfo getList(BusFjxgmdVo busFjxgmdVo) {
|
|
|
+ startPage();
|
|
|
+ List<BusFjxgmdVo> list = busFjxgmdService.getListByZz(busFjxgmdVo);
|
|
|
+ return getDataTable(list);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|