1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package org.jeecg.common.aspect.annotation;
|
| import java.lang.annotation.*;
|
| /**
| * 数据权限注解
| * @Author taoyan
| * @Date 2019年4月11日
| */
| @Retention(RetentionPolicy.RUNTIME)
| @Target({ElementType.TYPE,ElementType.METHOD})
| @Documented
| public @interface PermissionData {
| /**
| * 暂时没用
| * @return
| */
| String value() default "";
|
|
| /**
| * 配置菜单的组件路径,用于数据权限
| */
| String pageComponent() default "";
| }
|
|