From 37d47c6a7ab0f454b948b68c987146b261117993 Mon Sep 17 00:00:00 2001 From: Riku <risaku@163.com> Date: 星期日, 13 七月 2025 22:47:21 +0800 Subject: [PATCH] 2025.7.13 动态溯源逻辑调整 --- 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