All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ltd.fdsa.starter.logger.annotation.LogAnnotation Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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