package com.poyee.annotation; import java.lang.annotation.*; /** * 无需登录注解 * 标注在类或方法上表示不需要登录即可访问 */ @Target({ElementType.METHOD, ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface NoLogin { }