Explain.java 376 B

1234567891011121314151617181920
  1. package com.sumbytes.common.annotation;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. /**
  7. * 注释标注.
  8. *
  9. * @author Young
  10. */
  11. @Target(ElementType.METHOD)
  12. @Retention(RetentionPolicy.RUNTIME)
  13. public @interface Explain {
  14. String value() default "";
  15. }