- package com.simuwang.base.ano;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * @author wangzaijun
- * @date 2024/9/21 15:39
- * @description 排除的全局统一返回的方法
- */
- @Retention(RetentionPolicy.RUNTIME)
- @Target(ElementType.METHOD)
- public @interface ExcludeGlobalResult {
- }
|