ExcludeGlobalResult.java 408 B

12345678910111213141516
  1. package com.simuwang.base.ano;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Retention;
  4. import java.lang.annotation.RetentionPolicy;
  5. import java.lang.annotation.Target;
  6. /**
  7. * @author wangzaijun
  8. * @date 2024/9/21 15:39
  9. * @description 排除的全局统一返回的方法
  10. */
  11. @Retention(RetentionPolicy.RUNTIME)
  12. @Target(ElementType.METHOD)
  13. public @interface ExcludeGlobalResult {
  14. }