Sfoglia il codice sorgente

【CHG】修改查询条件参数

zhaomn 2 anni fa
parent
commit
ae59233bf3

+ 1 - 1
railway-business/src/main/java/com/railway/business/bi/controller/ShowBdycController.java

@@ -40,7 +40,7 @@ public class ShowBdycController extends BaseController {
   @GetMapping(value = "/remainList")
   public TableDataInfo remainList(BdycQuery showBdyc) {
     startPage();
-    showBdyc.setRectifyResult("未处理");
+    showBdyc.setRectifyResult("0");
     List<ShowBdyc> list = showBdycService.getList(showBdyc);
     return getDataTable(list);
   }

+ 1 - 1
railway-business/src/main/java/com/railway/business/bi/controller/ShowDlycController.java

@@ -40,7 +40,7 @@ public class ShowDlycController extends BaseController {
   @GetMapping(value = "/remainList")
   public TableDataInfo remainList(DlycQuery showDlyc) {
     startPage();
-    showDlyc.setRectifyResult("未处理");
+    showDlyc.setRectifyResult("0");
     List<ShowDlyc> list = showDlycService.getList(showDlyc);
     return getDataTable(list);
   }