All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hn.doc.xyj.annotation.ApiIgnore Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
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