com.github.codeinghelper.auth.ActionRight Maven / Gradle / Ivy
package com.github.codeinghelper.auth;
import java.lang.annotation.*;
/**
* @author :lzz
* @BelongsProject: com.github.lizeze.auth
* @date :Created in 2020/8/7 10:47
* @description :
* @modified By:
*/
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ActionRight {
String actionCode() default " ";
boolean require() default true;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy