All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cloud.agileframework.data.common.auth.annotation.AuthData Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cloud.agileframework.data.common.auth.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AuthData {
    /**
     * 默认为开启状态
     *
     * @return false为关闭数据权限过滤
     */
    boolean enable() default true;

    /**
     * 场景
     *
     * @return 传递给数据权限过滤器用于sql模板渲染
     */
    String[] group() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy