LogOperation.java 579 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * Copyright (c) 2018 业主系统 All rights reserved.
  3. *
  4. * https://www.kioor.com
  5. *
  6. * 版权所有,侵权必究!
  7. */
  8. package com.kioor.common.annotation;
  9. import java.lang.annotation.Documented;
  10. import java.lang.annotation.ElementType;
  11. import java.lang.annotation.Retention;
  12. import java.lang.annotation.RetentionPolicy;
  13. import java.lang.annotation.Target;
  14. /**
  15. * 操作日志注解
  16. *
  17. * @author Mark sunlightcs@gmail.com
  18. */
  19. @Target(ElementType.METHOD)
  20. @Retention(RetentionPolicy.RUNTIME)
  21. @Documented
  22. public @interface LogOperation {
  23. String value() default "";
  24. }