疯狂的狮子Li
2021-12-13 aae3fe5305518b5d950bbf40f6c1fea6d76881b3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.common.annotation;
 
import java.lang.annotation.*;
 
/**
 * 数据权限组
 *
 * @author Lion Li
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DataPermission {
 
    DataColumn[] value();
 
}