From c56e1e74426238939f229f0005828d05089715ff Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 03 七月 2025 17:30:58 +0800
Subject: [PATCH] 2025.7.3 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