|
@@ -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 {
|
|
|
|
|
|
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());
|