UserLoginCheck.java 304 B

1234567891011121314
  1. package com.template.annotation;
  2. import java.lang.annotation.ElementType;
  3. import java.lang.annotation.Target;
  4. /**
  5. * @Author: binguo
  6. * @Date: 2023/4/10 星期一 14:04
  7. * @Description: com.video.services.annotation
  8. * @Version: 1.0
  9. */
  10. @Target(ElementType.METHOD)
  11. public @interface UserLoginCheck {
  12. }