优化数据脱敏功能

dev
EightMonth 1 year ago
parent ae1b8d4654
commit 7dccaf2ec8

@ -6,12 +6,10 @@ import java.lang.annotation.*;
*
*
*
* @deprecated 使@{@link SensitiveField}
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
@Deprecated
public @interface SensitiveDecode {
/**

@ -27,7 +27,7 @@ public class SensitiveDataAspect {
/**
* Pointcut
*/
@Pointcut("@annotation(org.jeecg.common.desensitization.annotation.SensitiveEncode) || @annotation(org.jeecg.common.desensitization.annotation.SensitiveDecode)")
@Pointcut("@annotation(org.jeecg.common.desensitization.annotation.SensitiveDecode)")
public void sensitivePointCut() {
}

Loading…
Cancel
Save