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 = "";
|
}
|
|
|
}
|