Login.java 195 B

123456789101112
  1. package com.fs.app.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * app登录效验
  5. */
  6. @Target(ElementType.METHOD)
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Documented
  9. public @interface Login {
  10. }