package com.shlanbao.tzsc.utils.tools;
|
|
import java.lang.annotation.ElementType;
|
import java.lang.annotation.Retention;
|
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.Target;
|
|
/**
|
* @author: sunzhen
|
* @date: 2019/7/31
|
* @time: 18:18
|
* @description: 日志注解
|
*/
|
@Target(ElementType.METHOD) // 方法注解
|
@Retention(RetentionPolicy.RUNTIME) // 运行时可见
|
public @interface LogAnno {
|
String operateType();// 记录日志的操作类型
|
}
|