package com.jilongda.common.log;
|
|
import java.lang.annotation.*;
|
|
/**
|
* 自定义操作日志注解
|
*
|
* @author wu
|
*/
|
//注解放置的目标位置,METHOD是可注解在方法级别上
|
@Target(ElementType.METHOD)
|
//注解在哪个阶段执行 运行时
|
@Retention(RetentionPolicy.RUNTIME)
|
@Documented
|
public @interface OperationLog {
|
String operModul() default ""; // 操作模块
|
|
String operType() default ""; // 操作类型
|
|
String operDesc() default ""; // 操作说明
|
}
|