
com.github.ddm4j.api.document.annotation.ApiParamIgnore Maven / Gradle / Ivy
package com.github.ddm4j.api.document.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 需要隐藏的字段,为空表示,只留下被 ApiParam 标识的字段
*
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface ApiParamIgnore {
/**
* @return 需要隐藏的字段列表,为空表示所有
*/
public String[] value() default {};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy