18 lines
260 B
Java
18 lines
260 B
Java
package com.ruoyi.common.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* 数据权限组
|
|
*
|
|
* @author Lion Li
|
|
*/
|
|
@Target(ElementType.METHOD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface DataPermission {
|
|
|
|
DataColumn[] value();
|
|
|
|
}
|