- package com.izouma.nineth.annotations;
- import java.lang.annotation.*;
- @Target(ElementType.METHOD)
- @Retention(RetentionPolicy.RUNTIME)
- @Documented
- public @interface OperLog {
- String value() default "";
- String type() default "";
- String desc() default "";
- }
|