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 ""; }