Logs.java 471 Bytes
package com.yiboshi.science.config.annotation;

/**
 * 系统日志
 */

import com.yiboshi.science.enumeration.CommonEnum;

import java.lang.annotation.*;

/**
 * 自定义注解类
 */
@Target(ElementType.METHOD) //注解放置的目标位置,METHOD是可注解在方法级别上
@Retention(RetentionPolicy.RUNTIME) //注解在哪个阶段执行
@Documented //生成文档
public @interface Logs {
    CommonEnum.logType value() default CommonEnum.logType.nullValue;
}