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

com.soento.core.annotation.Log Maven / Gradle / Ivy

package com.soento.core.annotation;

import java.lang.annotation.*;

/**
 * 日志输出注解
 *
 * @author soento
 */
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface Log {
    /**
     * 日志输出描述
     */
    String description() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy