package com.qianwen.core.datascope.annotation;
|
|
import java.lang.annotation.Documented;
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Inherited;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
import com.qianwen.core.datascope.enums.DataScopeEnum;
|
|
@Target({ElementType.METHOD})
|
@Inherited
|
@Retention(RetentionPolicy.RUNTIME)
|
@Documented
|
/* loaded from: blade-starter-datascope-9.3.0.1-SNAPSHOT.jar:org/springblade/core/datascope/annotation/DataAuth.class */
|
public @interface DataAuth {
|
String code() default "";
|
|
String column() default "create_dept";
|
|
DataScopeEnum type() default DataScopeEnum.ALL;
|
|
String field() default "*";
|
|
String value() default "";
|
}
|