|
package com.february.mybatisplus.apect;
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* 切面类
|
|
*/
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.METHOD})
|
|
@Documented
|
|
public @interface WebLog {
|
|
/**
|
|
* 日志描述信息
|
|
* @return
|
|
**/
|
|
String description() default "";
|
|
}
|