admin
2020-06-03 48919e675b01fba353b36e98df7ebbbf9ef4e984
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ks.tool.bkz.aspact;
 
import org.aspectj.lang.annotation.Aspect;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;
 
//权限检测
@Component
@Aspect
@Order(2)
public class PermissionValidateAspect {
    public static final String EDP = "execution(* com.ks.tool.bkz.controller.user.*.*.*(..))";
 
    public static String KEY = "";
 
    static {
        KEY = "";
    }
 
 
}