|
@@ -4,6 +4,7 @@ import com.railway.business.bi.domain.ShowTestPlanDt;
|
|
|
import com.railway.business.bi.domain.vo.TestPlanDtQuery;
|
|
import com.railway.business.bi.domain.vo.TestPlanDtQuery;
|
|
|
import com.railway.business.bi.service.IShowTestPlanDtService;
|
|
import com.railway.business.bi.service.IShowTestPlanDtService;
|
|
|
import com.railway.common.core.controller.BaseController;
|
|
import com.railway.common.core.controller.BaseController;
|
|
|
|
|
+import com.railway.common.core.domain.AjaxResult;
|
|
|
import com.railway.common.core.page.TableDataInfo;
|
|
import com.railway.common.core.page.TableDataInfo;
|
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -36,4 +37,11 @@ public class ShowTestPlanDtController extends BaseController {
|
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "线别列表")
|
|
|
|
|
+ @GetMapping(value = "/listLine")
|
|
|
|
|
+ public AjaxResult getList() {
|
|
|
|
|
+ List<String> list = showTestPlanDtService.getLineList();
|
|
|
|
|
+ return AjaxResult.success(list);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|