DataPermission.java 280 B

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