|
|
@@ -6,6 +6,7 @@ import com.railway.business.bi.enums.YcxxFoundModeEnum;
|
|
|
import com.railway.business.bi.enums.YcxxRectifyResultEnum;
|
|
|
import com.railway.business.bi.service.IShowBdycService;
|
|
|
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;
|
|
|
@@ -39,6 +40,15 @@ public class ShowBdycController extends BaseController {
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "推送问题线别列表")
|
|
|
+ @GetMapping(value = "/listLine")
|
|
|
+ public AjaxResult getLineList() {
|
|
|
+ BdycQuery showBdyc = new BdycQuery();
|
|
|
+ showBdyc.setFoundMode(YcxxFoundModeEnum.PUSH.getCode());
|
|
|
+ List<String> list = showBdycService.getLineList(showBdyc);
|
|
|
+ return AjaxResult.success(list);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "自主发现问题列表")
|
|
|
@GetMapping(value = "/listSelf")
|
|
|
public TableDataInfo getListBySelf(BdycQuery showBdyc) {
|
|
|
@@ -48,6 +58,15 @@ public class ShowBdycController extends BaseController {
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "自主发现问题线别列表")
|
|
|
+ @GetMapping(value = "/listLineSelf")
|
|
|
+ public AjaxResult getLineListBySelf() {
|
|
|
+ BdycQuery showBdyc = new BdycQuery();
|
|
|
+ showBdyc.setFoundMode(YcxxFoundModeEnum.SELF.getCode());
|
|
|
+ List<String> list = showBdycService.getLineList(showBdyc);
|
|
|
+ return AjaxResult.success(list);
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "今日遗留列表")
|
|
|
@GetMapping(value = "/remainList")
|
|
|
public TableDataInfo remainList(BdycQuery showBdyc) {
|