fwq
1 天以前 1dd767dcc9919e3a0068835cd0dbca57f94debd5
提交 | 用户 | age
826b66 1 package com.hx.auto.common;
C 2
3 import java.lang.annotation.Documented;
4 import java.lang.annotation.ElementType;
5 import java.lang.annotation.Inherited;
6 import java.lang.annotation.Retention;
7 import java.lang.annotation.RetentionPolicy;
8 import java.lang.annotation.Target;
9
10
11 /**长字符串
12  * @author chenjiahe
13  * @version 2019年09月14日 下午6:13:37 
14  */
15 //表示注解加在接口、类、枚举等
16 @Target(ElementType.TYPE)
17 //VM将在运行期也保留注释,因此可以通过反射机制读取注解的信息
18 @Retention(RetentionPolicy.RUNTIME)
19 //将此注解包含在javadoc中
20 @Documented
21 //允许子类继承父类中的注解
22 @Inherited
23 public @interface Lob {
24     
25 }