|
@@ -32,6 +32,16 @@ public class ShowBdycController extends BaseController {
|
|
|
@GetMapping(value = "/list")
|
|
@GetMapping(value = "/list")
|
|
|
public TableDataInfo getList(BdycQuery showBdyc) {
|
|
public TableDataInfo getList(BdycQuery showBdyc) {
|
|
|
startPage();
|
|
startPage();
|
|
|
|
|
+ showBdyc.setFoundMode("0");
|
|
|
|
|
+ List<ShowBdyc> list = showBdycService.getList(showBdyc);
|
|
|
|
|
+ return getDataTable(list);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @ApiOperation(value = "自主发现问题列表")
|
|
|
|
|
+ @GetMapping(value = "/listSelf")
|
|
|
|
|
+ public TableDataInfo getListBySelf(BdycQuery showBdyc) {
|
|
|
|
|
+ startPage();
|
|
|
|
|
+ showBdyc.setFoundMode("1");
|
|
|
List<ShowBdyc> list = showBdycService.getList(showBdyc);
|
|
List<ShowBdyc> list = showBdycService.getList(showBdyc);
|
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
|
}
|
|
}
|