luoyb
2021-03-11 55cd1ac1b843cc6c19100d7e23b4276e4a8bc5a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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 "";
}