疯狂的狮子li
2021-12-16 d81056cbe7aba6702ba048501346c56475a00d7a
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, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DataPermission {
 
    DataColumn[] value();
 
}