From 3202ffdacb87a8500a79ab849106e800ca1e04f7 Mon Sep 17 00:00:00 2001 From: xyli Date: Mon, 20 Feb 2023 09:43:29 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=86=85=E9=83=A8=E7=B1=BBUr?= =?UTF-8?q?lFeature,=E6=B7=BB=E5=8A=A0=E6=9E=84=E9=80=A0=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/mpms/permission/CacheControllerFeature.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/mpms/permission/CacheControllerFeature.java b/src/main/java/mpms/permission/CacheControllerFeature.java index 513dc26..b0f6c83 100644 --- a/src/main/java/mpms/permission/CacheControllerFeature.java +++ b/src/main/java/mpms/permission/CacheControllerFeature.java @@ -167,5 +167,10 @@ public class CacheControllerFeature { return methodFeature; } + UrlFeature(String url, ClassFeature classFeature, MethodFeature methodFeature) { + this.url = url; + this.classFeature = classFeature; + this.methodFeature = methodFeature; + } } } -- Gitee