OperLog.java 271 B

1234567891011121314
  1. package com.izouma.nineth.annotations;
  2. import java.lang.annotation.*;
  3. @Target(ElementType.METHOD)
  4. @Retention(RetentionPolicy.RUNTIME)
  5. @Documented
  6. public @interface OperLog {
  7. String value() default "";
  8. String type() default "";
  9. String desc() default "";
  10. }