ApiValidate.java 268 B

123456789101112131415
  1. package com.sooka.common.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * Created by binary on 2017/4/10.
  5. */
  6. @Documented
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Target(ElementType.METHOD)
  9. public @interface ApiValidate {
  10. boolean checkSignature() default true;
  11. }