1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.stylefeng.roses.kernel.security.database.annotation;
|
| import java.lang.annotation.*;
|
| /**
| * 需要加密字段注解
| * <p>
| * 该注解作用范围在字段上面(该类需要加 {@link ProtectedData} 注解)
| *
| * @author majianguo
| * @date 2021/7/3 10:57
| */
| @Documented
| @Inherited
| @Target({ElementType.FIELD})
| @Retention(RetentionPolicy.RUNTIME)
| public @interface EncryptField {
|
| }
|
|