From d3b43d50df28c4fe27c104dcd146d35b2bad4d20 Mon Sep 17 00:00:00 2001
From: Riku <risaku@163.com>
Date: 星期三, 11 六月 2025 22:48:01 +0800
Subject: [PATCH] 1. 新增动态污染溯源新的判定逻辑(待完成)

---
 src/main/kotlin/com/flightfeather/uav/biz/dataanalysis/BaseExceptionResult.kt |   13 +++++++++++++
 1 files changed, 13 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..2d9a64e 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,22 @@
 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
+
+    init {
+        guid = UUID.randomUUID().toString()
+    }
+
 }
\ No newline at end of file

--
Gitblit v1.9.3