Skip to content

Commit

Permalink
fix(data): 移除 DataPermission 注解的 value 属性
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed Aug 28, 2024
1 parent e55eb17 commit d3fa00d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

package top.continew.starter.data.mybatis.flex.datapermission;

import org.springframework.core.annotation.AliasFor;

import java.lang.annotation.*;

/**
Expand All @@ -31,16 +29,9 @@
@Documented
public @interface DataPermission {

/**
* Alias for the {@link #tableAlias()} attribute.
*/
@AliasFor("tableAlias")
String value() default "";

/**
* 表别名
*/
@AliasFor("value")
String tableAlias() default "";

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

package top.continew.starter.data.mybatis.plus.datapermission;

import org.springframework.core.annotation.AliasFor;

import java.lang.annotation.*;

/**
Expand All @@ -31,16 +29,9 @@
@Documented
public @interface DataPermission {

/**
* Alias for the {@link #tableAlias()} attribute.
*/
@AliasFor("tableAlias")
String value() default "";

/**
* 表别名
*/
@AliasFor("value")
String tableAlias() default "";

/**
Expand Down

0 comments on commit d3fa00d

Please sign in to comment.