提交 | 用户 | 时间 | ||
a6de49 | 1 | /** |
H | 2 | * Copyright (c) 2018 人人开源 All rights reserved. |
3 | * | |
4 | * https://www.renren.io | |
5 | * | |
6 | * 版权所有,侵权必究! | |
7 | */ | |
8 | ||
9 | package com.iailab.common.annotation; | |
10 | ||
11 | import java.lang.annotation.*; | |
12 | ||
13 | /** | |
14 | * 操作日志注解 | |
15 | * | |
16 | * @author Mark sunlightcs@gmail.com | |
17 | */ | |
18 | @Target(ElementType.METHOD) | |
19 | @Retention(RetentionPolicy.RUNTIME) | |
20 | @Documented | |
21 | public @interface LogOperation { | |
22 | ||
23 | String value() default ""; | |
24 | } |