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