df0da5aaf5793a1a695c5e8b7bd9ee0663638ba8.svn-base 354 B

123456789101112131415161718
  1. package org.jeecg.common.aspect.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * online请求拦截专用注解
  5. */
  6. @Retention(RetentionPolicy.RUNTIME)
  7. @Target({ElementType.TYPE,ElementType.METHOD})
  8. @Documented
  9. public @interface OnlineAuth {
  10. /**
  11. * 请求关键字,在xxx/code之前的字符串
  12. * @return
  13. */
  14. String value();
  15. }