- package com.sf.quanrizhi.day01;
- import java.lang.annotation.*;
- @Inherited //子类可以被继承
- @Target(ElementType.TYPE) //定义在类上
- @Retention(RetentionPolicy.RUNTIME) //生命周期 运行时
- public @interface Table {
- String value();
- /**
- * 为什么要这么定义
- * 背景:我们通过注解写一个sql语句 select 字段... from user
- */
- }
|