From 85909f9a78a328de2bc3efc0d1d184320cb8970b Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期五, 11 七月 2025 17:22:54 +0800
Subject: [PATCH] 2025.7.11 1. 修改动态溯源异常判断逻辑

---
 src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/BaseExceptionResult.kt |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/BaseExceptionResult.kt b/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/BaseExceptionResult.kt
index 3500ba0..f8c3f84 100644
--- a/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/BaseExceptionResult.kt
+++ b/src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/BaseExceptionResult.kt
@@ -1,9 +1,25 @@
 package com.flightfeather.uav.biz.dataanalysis
 
+import com.flightfeather.uav.lightshare.eunm.ExceptionStatusType
+import java.util.*
+
 /**
  * 寮傚父缁撴灉鍩虹被
  * @date 2025/5/13
  * @author feiyu02
  */
 abstract class BaseExceptionResult {
+    // 寮傚父缂栧彿
+    var guid: String? = null
+
+    // 寮傚父鐨勭姸鎬�
+    var status: Int = ExceptionStatusType.InProgress.value
+
+    var factorId: Int? = null
+    var factorName: String? = null
+
+    init {
+        guid = UUID.randomUUID().toString()
+    }
+
 }
\ No newline at end of file

--
Gitblit v1.9.3