From 70983a5b2f27f76d8fedc6285aa572701a754b16 Mon Sep 17 00:00:00 2001 From: yangjun <1173114630@qq.com> Date: Thu, 13 Mar 2025 08:35:43 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AD=97=E5=85=B8=E7=BF=BB?= =?UTF-8?q?=E8=AF=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/org/jeecg/common/aspect/DictAspect.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nursing-unit-base-core/src/main/java/org/jeecg/common/aspect/DictAspect.java b/nursing-unit-base-core/src/main/java/org/jeecg/common/aspect/DictAspect.java index b419248..2ddc142 100644 --- a/nursing-unit-base-core/src/main/java/org/jeecg/common/aspect/DictAspect.java +++ b/nursing-unit-base-core/src/main/java/org/jeecg/common/aspect/DictAspect.java @@ -54,7 +54,8 @@ public class DictAspect { */ @Pointcut("(@within(org.springframework.web.bind.annotation.RestController) || " + "@within(org.springframework.stereotype.Controller) || @annotation(org.jeecg.common.aspect.annotation.AutoDict)) " + - "&& execution(public org.jeecg.common.api.vo.Result com.nu..*.*(..))") + "&& ( execution(public org.jeecg.common.api.vo.Result com.nu..*.*(..)) || " + + "execution(public org.jeecg.common.api.vo.Result org.jeecg..*.*(..)) )") public void excudeService() { }