|
@@ -82,7 +82,10 @@ public class UserOperationLogAspect {
|
|
|
operationLog.setDetails(details.toString());
|
|
|
}
|
|
|
}
|
|
|
- logMapper.insertFsUserOperationLog(operationLog);
|
|
|
+
|
|
|
+ if (operationLog.getUserId() != null) {
|
|
|
+ logMapper.insertFsUserOperationLog(operationLog);
|
|
|
+ }
|
|
|
} catch (Exception ex) {
|
|
|
log.error("操作日志插入异常", ex);
|
|
|
} finally {
|