2021-12-13 03:49:05 +00:00
|
|
|
package com.ruoyi.common.annotation;
|
|
|
|
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 数据权限组
|
|
|
|
*
|
|
|
|
* @author Lion Li
|
2021-12-17 21:50:14 +08:00
|
|
|
* @version 3.5.0
|
2021-12-13 03:49:05 +00:00
|
|
|
*/
|
2021-12-16 10:54:44 +08:00
|
|
|
@Target({ElementType.METHOD, ElementType.TYPE})
|
2021-12-13 03:49:05 +00:00
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
|
|
@Documented
|
|
|
|
public @interface DataPermission {
|
|
|
|
|
|
|
|
DataColumn[] value();
|
|
|
|
|
|
|
|
}
|