package com.common.annotation; import java.lang.annotation.*; /** * @author 廖振钦 * @date 2022-02-18 * */ @Target({ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface NoLog { }