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 ""; // 操作说明 }