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