Log.java 1012 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package com.ruoyi.common.annotation;
  2. import java.lang.annotation.Documented;
  3. import java.lang.annotation.ElementType;
  4. import java.lang.annotation.Retention;
  5. import java.lang.annotation.RetentionPolicy;
  6. import java.lang.annotation.Target;
  7. import com.ruoyi.common.enums.BusinessType;
  8. import com.ruoyi.common.enums.OperatorType;
  9. /**
  10. * 自定义操作日志记录注解
  11. *
  12. * @author ruoyi
  13. *
  14. */
  15. @Target({ ElementType.PARAMETER, ElementType.METHOD })
  16. @Retention(RetentionPolicy.RUNTIME)
  17. @Documented
  18. public @interface Log
  19. {
  20. /**
  21. * 模块
  22. */
  23. public String title() default "";
  24. /**
  25. * 功能
  26. */
  27. public BusinessType businessType() default BusinessType.OTHER;
  28. /**
  29. * 操作人类别
  30. */
  31. public OperatorType operatorType() default OperatorType.MANAGE;
  32. /**
  33. * 是否保存请求的参数
  34. */
  35. public boolean isSaveRequestData() default true;
  36. /**
  37. * 是否保存响应的参数
  38. */
  39. public boolean isSaveResponseData() default true;
  40. }