You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
452 B
29 lines
452 B
package com.ruoyi.common.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";
|
|
|
|
}
|