com.hn.doc.xyj.annotation.ApiIgnore Maven / Gradle / Ivy
package com.hn.doc.xyj.annotation;
import java.lang.annotation.*;
/**
* 忽略字段
*/
// 字段、枚举的常量
@Target({ElementType.FIELD})
// 注解会在class字节码文件中存在,在运行时可以通过反射获取到
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ApiIgnore {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy