!422 feat: 修改错误注释

Merge pull request !422 from 与或非/feat/20230224
This commit is contained in:
芋道源码 2023-02-28 16:49:52 +00:00 committed by Gitee
commit a31887568a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -1,8 +1,8 @@
package cn.iocoder.yudao.framework.operatelog.core.annotations; package cn.iocoder.yudao.framework.operatelog.core.annotations;
import cn.iocoder.yudao.framework.operatelog.core.enums.OperateTypeEnum; import cn.iocoder.yudao.framework.operatelog.core.enums.OperateTypeEnum;
import io.swagger.v3.oas.annotations.tags.Tag;
import io.swagger.v3.oas.annotations.Operation; import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import java.lang.annotation.ElementType; import java.lang.annotation.ElementType;
import java.lang.annotation.Retention; import java.lang.annotation.Retention;
@ -23,13 +23,13 @@ public @interface OperateLog {
/** /**
* 操作模块 * 操作模块
* *
* 为空时会尝试读取 {@link Api#value()} 属性 * 为空时会尝试读取 {@link Tag#name()} 属性
*/ */
String module() default ""; String module() default "";
/** /**
* 操作名 * 操作名
* *
* 为空时会尝试读取 {@link ApiOperation#value()} 属性 * 为空时会尝试读取 {@link Operation#summary()} 属性
*/ */
String name() default ""; String name() default "";
/** /**