Browse Source

第三方接口添加日志

gao.qiang 1 year ago
parent
commit
0332461bbb

+ 1 - 1
base-common/src/main/java/com/ozs/common/core/domain/entity/SysOperLog.java

@@ -20,7 +20,7 @@ import java.util.Date;
 @AllArgsConstructor
 @NoArgsConstructor
 @Builder
-public class SysOperLog extends BaseEntityExp {
+public class SysOperLogSdk extends BaseEntityExp {
 
     /**
      * 日志主键

+ 4 - 5
base-common/src/main/java/com/ozs/common/utils/LogAspectSDK.java

@@ -3,8 +3,7 @@ package com.ozs.common.utils;
 import com.alibaba.fastjson2.JSON;
 import com.ozs.common.annotation.SdkLog;
 import com.ozs.common.constant.Constants;
-import com.ozs.common.core.domain.entity.SvcAddress;
-import com.ozs.common.core.domain.entity.SysOperLog;
+import com.ozs.common.core.domain.entity.SysOperLogSdk;
 import com.ozs.common.enums.HttpMethod;
 import com.ozs.common.filter.PropertyPreExcludeFilter;
 import com.ozs.common.utils.ip.IpUtils;
@@ -77,7 +76,7 @@ public class LogAspectSDK {
             String token = apiTokenUtils.getGeoHazardMonitorToken(request);
 
             // *========数据库日志=========*//
-            SysOperLog operLog = new SysOperLog();
+            SysOperLogSdk operLog = new SysOperLogSdk();
             operLog.setStatus(Integer.valueOf(Constants.SUCCESS));
             // 请求的地址
             String ip = IpUtils.getIpAddr(ServletUtils.getRequest());
@@ -115,7 +114,7 @@ public class LogAspectSDK {
      * @param operLog 操作日志
      * @throws Exception
      */
-    public void getControllerMethodDescription(JoinPoint joinPoint, SdkLog log, SysOperLog operLog, Object jsonResult) throws Exception {
+    public void getControllerMethodDescription(JoinPoint joinPoint, SdkLog log, SysOperLogSdk operLog, Object jsonResult) throws Exception {
         // 设置action动作
         operLog.setBusinessType(log.businessType().ordinal());
         // 设置标题
@@ -137,7 +136,7 @@ public class LogAspectSDK {
      * @param operLog 操作日志
      * @throws Exception 异常
      */
-    private void setRequestValue(JoinPoint joinPoint, SysOperLog operLog) throws Exception {
+    private void setRequestValue(JoinPoint joinPoint, SysOperLogSdk operLog) throws Exception {
         String requestMethod = operLog.getRequestMethod();
         if (HttpMethod.PUT.name().equals(requestMethod) || HttpMethod.POST.name().equals(requestMethod)) {
             String params = argsArrayToString(joinPoint.getArgs());