DataScope.java 574 B

12345678910111213141516171819202122232425262728
  1. package com.ruoyi.common.annotation;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. /**
  8. * 数据权限过滤注解
  9. *
  10. * @author ruoyi
  11. */
  12. @Target(ElementType.METHOD)
  13. @Retention(RetentionPolicy.RUNTIME)
  14. @Documented
  15. public @interface DataScope
  16. {
  17. /**
  18. * 部门表的别名
  19. */
  20. public String deptAlias() default "";
  21. /**
  22. * 用户表的别名
  23. */
  24. public String userAlias() default "";
  25. }