Digital Office Automation System Backend
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

DataPermission.java 298B

5 个月前
123456789101112131415161718
  1. package com.ruoyi.common.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * 数据权限组
  5. *
  6. * @author Lion Li
  7. * @version 3.5.0
  8. */
  9. @Target({ElementType.METHOD, ElementType.TYPE})
  10. @Retention(RetentionPolicy.RUNTIME)
  11. @Documented
  12. public @interface DataPermission {
  13. DataColumn[] value();
  14. }