xyz.erupt.upms.fun.EruptLogin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of erupt-upms Show documentation
Show all versions of erupt-upms Show documentation
User Permissions Management
The newest version!
package xyz.erupt.upms.fun;
import xyz.erupt.annotation.config.Comment;
import java.lang.annotation.*;
/**
* @author YuePeng
* date 2021/2/13 20:10
*/
@Comment("自定义登录逻辑,需在spring boot入口类中修饰")
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Inherited
public @interface EruptLogin {
Class extends LoginProxy> value();
}