mirror of
https://github.com/scxwhite/hera.git
synced 2025-05-03 03:00:52 +08:00
16 lines
354 B
Java
Executable File
16 lines
354 B
Java
Executable File
package com.dfire.config;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* Created by xiaosuda on 2018/7/24.
|
|
*/
|
|
@Target({ElementType.TYPE, ElementType.METHOD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface UnCheckLogin {
|
|
|
|
}
|