ltd.fdsa.starter.logger.annotation.LogAnnotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logger-spring-boot-starter Show documentation
Show all versions of logger-spring-boot-starter Show documentation
logger starter for spring boot
package ltd.fdsa.starter.logger.annotation;
import java.lang.annotation.*;
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface LogAnnotation {
/**
* 模块
*
* @return
*/
String module();
/**
* 操作
*/
String operate();
/**
* 描述信息 ***
*/
String desc() default "";
/**
* 记录执行参数
*
* @return
*/
boolean withParam() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy