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

com.nxyfan.framework.common.annotation.CommonLog Maven / Gradle / Ivy

package com.nxyfan.framework.common.annotation;

import java.lang.annotation.*;

/**
 * 自定义日志注解
 *
 * @author amour
 * @date 2022/6/20 14:25
 **/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface CommonLog {

    /**
     * 日志的名称,例如:"修改菜单"
     */
    String value() default "未命名";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy