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.
|
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(); |
|
|
|
}
|
|
|