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.
19 lines
298 B
19 lines
298 B
|
7 months ago
|
package com.ruoyi.common.annotation;
|
||
|
|
|
||
|
|
import java.lang.annotation.*;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 数据权限组
|
||
|
|
*
|
||
|
|
* @author Lion Li
|
||
|
|
* @version 3.5.0
|
||
|
|
*/
|
||
|
|
@Target({ElementType.METHOD, ElementType.TYPE})
|
||
|
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
|
@Documented
|
||
|
|
public @interface DataPermission {
|
||
|
|
|
||
|
|
DataColumn[] value();
|
||
|
|
|
||
|
|
}
|