package cc.mrbird.febs.common.core.annotation; import java.lang.annotation.*; /** * name: FieldInfo * package: cc.mrbird.febs.common.core.annotation * description: 实体属性说明注解 * date: 2021-01-25 23:01 * * @author luoyibo * @version 0.1 * @since JDK 1.8 */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) @Documented public @interface FieldInfo { /** * 字段名称 */ String name() default ""; /** * 字段类型 */ String type() default ""; /** * 字段说明 */ String explain() default ""; }