qirong
2023-11-22 6ff94b7813f1e51a0dc74f1ea8386c0f008f5e57
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
26
27
28
package org.dromara.common.mybatis.annotation;
 
import java.lang.annotation.*;
 
/**
 * 数据权限
 *
 * 一个注解只能对应一个模板
 *
 * @author Lion Li
 * @version 3.5.0
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DataColumn {
 
    /**
     * 占位符关键字
     */
    String[] key() default "deptName";
 
    /**
     * 占位符替换值
     */
    String[] value() default "dept_id";
 
}