february-merchant-settlement/february-merchant-mybatis-plus/src/main/java/com/february/mybatisplus/apect/WebLog.java

17 lines
295 B
Java

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