17 lines
344 B
Java
17 lines
344 B
Java
package com.mcwl.common.interfaces;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* 无需登录注解
|
|
*
|
|
* @author 陈妍
|
|
*/
|
|
@Target(ElementType.METHOD)
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface NoLogin {
|
|
}
|