更新sql和代码规范修改

This commit is contained in:
moxiangrong
2024-02-18 15:26:45 +08:00
parent 6f5e6e4662
commit c132b68745
1293 changed files with 43935 additions and 18456 deletions

View File

@ -22,19 +22,21 @@ public @interface OperateLog {
/**
* 操作模块
*
* <p>
* 为空时,会尝试读取 {@link Tag#name()} 属性
*/
String module() default "";
/**
* 操作名
*
* <p>
* 为空时,会尝试读取 {@link Operation#summary()} 属性
*/
String name() default "";
/**
* 操作分类
*
* <p>
* 实际并不是数组,因为枚举不能设置 null 作为默认值
*/
OperateTypeEnum[] type() default {};
@ -45,10 +47,12 @@ public @interface OperateLog {
* 是否记录操作日志
*/
boolean enable() default true;
/**
* 是否记录方法参数
*/
boolean logArgs() default true;
/**
* 是否记录方法结果的数据
*/

View File

@ -267,9 +267,9 @@ public class OperateLogAspect {
return null;
}
return Arrays.stream(requestMethods).filter(requestMethod ->
requestMethod == RequestMethod.POST
|| requestMethod == RequestMethod.PUT
|| requestMethod == RequestMethod.DELETE)
requestMethod == RequestMethod.POST
|| requestMethod == RequestMethod.PUT
|| requestMethod == RequestMethod.DELETE)
.findFirst().orElse(null);
}

View File

@ -15,7 +15,7 @@ public enum OperateTypeEnum {
/**
* 查询
*
* <p>
* 绝大多数情况下,不会记录查询动作,因为过于大量显得没有意义。
* 在有需要的时候,通过声明 {@link OperateLog} 注解来记录
*/
@ -42,7 +42,7 @@ public enum OperateTypeEnum {
IMPORT(6),
/**
* 其它
*
* <p>
* 在无法归类时,可以选择使用其它。因为还有操作名可以进一步标识
*/
OTHER(0);

View File

@ -8,7 +8,7 @@ import org.springframework.scheduling.annotation.Async;
/**
* 操作日志 Framework Service 实现类
*
* <p>
* 基于 {@link OperateLogApi} 实现,记录操作日志
*
* @author yshop