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

templates.common.Inner.ftl Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package ${packageName}.common.annotation;

import java.lang.annotation.*;

/***
 * 服务调用不鉴权注解
 *
 * @author Co.
 * @date: 2022/10/20 18:17
 * @return
 */
@Target({ ElementType.METHOD, ElementType.TYPE })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Inner {

	/**
	 * 是否AOP统一处理
	 * @return false, true
	 */
	boolean value() default true;

	/**
	 * 需要特殊判空的字段(预留)
	 * @return {}
	 */
	String[] field() default {};

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy