From 448bbf9ccb7564036e34fe4a497e4365bf14a5fc Mon Sep 17 00:00:00 2001
From: 张晓波 <bingbo1993@126.com>
Date: 星期一, 30 十月 2023 10:27:50 +0800
Subject: [PATCH] 人脸 缓存同步菜单
---
hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java b/hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java
index c764fa9..4ee1449 100644
--- a/hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java
+++ b/hd/pipe/common/src/main/java/com/thhy/general/config/InsertAop.java
@@ -26,7 +26,7 @@
@Around("pointcut()")
public Object invoke(ProceedingJoinPoint invocation) throws Throwable {
- /*String methodName = invocation.getSignature().getName();
+ String methodName = invocation.getSignature().getName();
if(methodName.contains("insert")||methodName.contains("Insert")){
Object j = invocation.getArgs()[0];
@@ -65,8 +65,7 @@
return invocation.proceed();
}else{
return invocation.proceed();
- }*/
- return invocation.proceed();
+ }
}
--
Gitblit v1.9.3