1、日志切面编码

pull/1/head
陈沅 2 years ago
parent 13eb93bb0a
commit 0048b28dd3

@ -0,0 +1,27 @@
package com.sztzjy.forex.trading_trading.annotation;
import java.lang.annotation.*;
/**
*
*
*
* 2023621
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface OperateLog {
/**
*
*
* @return
*/
boolean recordParameters() default true;
/**
*
* @return
*/
String description() default "";
}
Loading…
Cancel
Save