top.cutexingluo.tools.common.api.ApiPublic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xingtools-core Show documentation
Show all versions of xingtools-core Show documentation
xingtools 核心,包括各种接口,实体类和工具类
package top.cutexingluo.tools.common.api;
import java.lang.annotation.*;
/**
* Api 开放接口
* 声明接口为公开接口
* 可用于 apifox 配置
* 可以用Spring Security 的@PermitAll 代替
*
* @author XingTian
* @version 1.0.0
* @date 2023/7/20 18:21
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface ApiPublic {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy