| 1234567891011121314151617181920212223242526272829303132 |
- package jnpf.annotation;
- import java.lang.annotation.*;
- /**
- * 请求日志注解
- *
- * @author :JNPF开发平台组
- * @version: V3.1.0
- * @copyright 引迈信息技术有限公司
- * @date :2022/3/15 11:19
- */
- @Documented
- @Target({ElementType.METHOD})
- @Retention(RetentionPolicy.RUNTIME)
- public @interface HandleLog {
- /**
- * 操作模块
- *
- * @return
- */
- String moduleName() default "";
- /**
- * 操作方式
- *
- * @return
- */
- String requestMethod() default "";
- }
|