SignVerification.java 249 B

12345678910
  1. package com.fdkankan.contro.annotation;
  2. import java.lang.annotation.*;
  3. @Target({ElementType.PARAMETER, ElementType.METHOD})
  4. @Retention(RetentionPolicy.RUNTIME)
  5. @Documented
  6. public @interface SignVerification {
  7. String description() default "";
  8. }