refactor: remove @Inherited from Table annotation

This commit is contained in:
开源海哥 2023-09-24 09:45:40 +08:00
parent f839dfdd24
commit 1f1d9cdffe

View File

@ -24,7 +24,7 @@ import java.lang.annotation.*;
*/ */
@Retention(RetentionPolicy.RUNTIME) @Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE}) @Target({ElementType.TYPE})
@Inherited //@Inherited 需要注释否则会在 vo 等继承 model 的实体类中生成多余的或冲突的 tableDef
public @interface Table { public @interface Table {
/** /**