5
0
mirror of https://github.com/scxwhite/hera.git synced 2025-05-03 03:00:52 +08:00
hera/hera-admin/src/main/java/com/dfire/config/UnCheckLogin.java
苏承祥 db368c4836 init
2020-10-19 18:16:57 +08:00

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 {
}