//1.定义类上注解,
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@interface Tablename{
String value();
}
//2.定义字段上注解
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface java基础系列详解 Fieldattr{
String name();
String type();
}
版权声明:
本文来源网络,所有图片文章版权属于原作者,如有侵权,联系删除。
本文网址:https://www.bianchenghao6.com/h6javajc/1428.html