xieb
2024-04-25 41dc2ca8393e40e9efb8a6bf05f2ab1400d80215
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.dji.sample.log.aspect;
 
import java.lang.annotation.*;
 
/**
 * @PROJECT_NAME: iot_drone_api
 * @DESCRIPTION: 自定义操作日志注解
 * @USER: aix
 * @DATE: 2023/10/17 16:08
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface SysLogAnnotation {
 
    String operModul() default ""; // 操作模块
 
    String operType() default "";  // 操作类型
 
    String operDesc() default "";  // 操作说明
}