From 33e5d4cbe1dcf35590b0a149ddcfed5134dae051 Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期五, 04 七月 2025 17:28:50 +0800
Subject: [PATCH] 2025.7.4 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