package cn.stylefeng.roses.kernel.security.database.annotation; import java.lang.annotation.*; /** * 需要加密字段注解 *

* 该注解作用范围在字段上面(该类需要加 {@link ProtectedData} 注解) * * @author majianguo * @date 2021/7/3 10:57 */ @Documented @Inherited @Target({ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface EncryptField { }