HandleLog.java 522 B

1234567891011121314151617181920212223242526272829303132
  1. package jnpf.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * 请求日志注解
  5. *
  6. * @author :JNPF开发平台组
  7. * @version: V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date :2022/3/15 11:19
  10. */
  11. @Documented
  12. @Target({ElementType.METHOD})
  13. @Retention(RetentionPolicy.RUNTIME)
  14. public @interface HandleLog {
  15. /**
  16. * 操作模块
  17. *
  18. * @return
  19. */
  20. String moduleName() default "";
  21. /**
  22. * 操作方式
  23. *
  24. * @return
  25. */
  26. String requestMethod() default "";
  27. }