Table.java 221 B

12345678910
  1. package com.sf.javase.day20;
  2. import java.lang.annotation.*;
  3. @Target(value = ElementType.TYPE)
  4. @Retention(RetentionPolicy.RUNTIME)
  5. @Inherited // 是否可继承 是
  6. public @interface Table {
  7. String value();
  8. }