package com.poyee.annotation; import java.lang.annotation.*; /** * 脱敏规则 */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface DesensitMethod { boolean desensit() default true; }