From 8840923aa066b1777bed2756033e2860633aea51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=90=A6=E6=B6=9B?= Date: Wed, 8 Mar 2023 16:20:35 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90fix=20sonar=E3=80=91NgAlainService?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/jero/modules/ngalain/service/NgAlainService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/ngalain/service/NgAlainService.java b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/ngalain/service/NgAlainService.java index e9d5dbc5..1cb51bf9 100644 --- a/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/ngalain/service/NgAlainService.java +++ b/jero-boot/jero-boot-module-system/src/main/java/com/jero/modules/ngalain/service/NgAlainService.java @@ -6,7 +6,7 @@ import java.util.List; import java.util.Map; public interface NgAlainService { - public JSONArray getMenu(String id) throws Exception; - public JSONArray getJeroMenu(String id) throws Exception; - public List> getDictByTable(String table, String key, String value); + JSONArray getMenu(String id); + JSONArray getJeroMenu(String id); + List> getDictByTable(String table, String key, String value); }