1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package cn.stylefeng.roses.kernel.security.database.annotation;
|
| import java.lang.annotation.*;
|
| /**
| * 被保护数据标识注解(标识那个DTO需要加解密)
| * <p>
| * 该注解作用范围在类上面
| *
| * @author majianguo
| * @date 2021/7/3 10:54
| */
| @Inherited
| @Target({ElementType.TYPE})
| @Retention(RetentionPolicy.RUNTIME)
| public @interface ProtectedData {
|
| }
|
|