From 160e150009b51a39fa95d9462c3798ba28d51a09 Mon Sep 17 00:00:00 2001 From: lxw <810412026@qq.com> Date: 星期二, 15 八月 2023 08:49:47 +0800 Subject: [PATCH] 审批页面修改 --- src/main/java/com/whyc/controller/CheckController.java | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/whyc/controller/CheckController.java b/src/main/java/com/whyc/controller/CheckController.java index ebd305a..7fb58ff 100644 --- a/src/main/java/com/whyc/controller/CheckController.java +++ b/src/main/java/com/whyc/controller/CheckController.java @@ -24,7 +24,10 @@ @ApiOperation(value = "妫�鏌ユ楠�") @GetMapping("checkStatus") - public Response checkStatus(@RequestParam int deviceId, @RequestParam int battGroupId, @RequestParam int type, HttpServletRequest request){ + public Response checkStatus(@RequestParam int deviceId, + @RequestParam int battGroupId, + @RequestParam int index, + @RequestParam int type, HttpServletRequest request){ Response response = new Response<>(); switch (type){ @@ -58,6 +61,12 @@ response = checkService.checkFive(request,battGroupId); } break; + //鍒囨崲绠辨帴瑙﹀櫒鐘舵�� + //瀵瑰簲鐢垫睜缁勬璐熸瀬鍏ㄤ负1鍒欐甯� + case 6: { + response = checkService.checkSix(request,deviceId,index); + } + break; } try { sleep(1000); -- Gitblit v1.9.1