forked from kidgrow-microservices-platform

luliqiang
2021-02-26 a7ce98e167ae05c2ee00e39733b35521353218cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.kidgrow.log.annotation;
 
import java.lang.annotation.*;
 
/**
 * 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
 *
 * @Description: <br>
 * @Project: <br>
 * @CreateDate: Created in 2020/2/13 18:39 <br>
 * @Author: <a href="4345453@kidgrow.com">liuke</a>
 */
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface AuditLog {
    /**
     * 操作信息
     */
    String operation();
}