OperateLog.java 370 B

1234567891011121314151617181920
  1. package net.lab1024.smartadmin.common.anno;
  2. import java.lang.annotation.*;
  3. /**
  4. * [ 用户操作日志 ]
  5. *
  6. * @author yandanyang
  7. * @version 1.0
  8. * @company 1024lab.net
  9. * @copyright (c) 2019 1024lab.netInc. All rights reserved.
  10. * @date
  11. * @since JDK1.8
  12. */
  13. @Retention(RetentionPolicy.RUNTIME)
  14. @Target(ElementType.TYPE)
  15. @Documented
  16. public @interface OperateLog {
  17. }