MyTest.java 360 B

1234567891011121314151617
  1. package J20250806.annotation;
  2. import java.lang.annotation.Retention;
  3. import java.lang.annotation.RetentionPolicy;
  4. /**
  5. * @author WanJl
  6. * @version 1.0
  7. * @title MyTest
  8. * @description
  9. * @create 2025/8/6
  10. */
  11. //声明这个注解的存活时间,保证这个注解会一直存在一直有效
  12. @Retention(RetentionPolicy.RUNTIME)
  13. public @interface MyTest {
  14. }