AprilWind
2024-06-27 3dff5299206a365ab4b61e9050aeb6b52a733433
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.dromara.common.mybatis.annotation;
 
import java.lang.annotation.*;
 
/**
 * 数据权限组注解,用于标记数据权限配置数组
 *
 * @author Lion Li
 * @version 3.5.0
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DataPermission {
 
    /**
     * 数据权限配置数组,用于指定数据权限的占位符关键字和替换值
     *
     * @return 数据权限配置数组
     */
    DataColumn[] value();
 
}