ResponseResult.java 284 B

12345678910111213
  1. package com.alvin.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * 标记方法返回值需要进行包装的 自定义注解
  5. * @author 田云
  6. */
  7. @Target({ElementType.TYPE, ElementType.METHOD})
  8. @Retention(RetentionPolicy.RUNTIME)
  9. @Documented
  10. public @interface ResponseResult {
  11. }