Blame view

SysLog.java 296 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.zhongzhi.common.utils;

import java.lang.annotation.*;

/**
 * <p>
 * 自定义日志注解
 * </p>
 *
 * @author DengMin
 * @since 2020/12/18
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface SysLog {

    String value() default "";
}