修改字典翻译

This commit is contained in:
yangjun 2025-03-13 08:35:43 +08:00
parent 24f552a6a9
commit 70983a5b2f
1 changed files with 2 additions and 1 deletions

View File

@ -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() {
}