From cf160e28026ed1ed8bea82701d66e79a1085c503 Mon Sep 17 00:00:00 2001 From: Riku <risaku@163.com> Date: 星期四, 15 五月 2025 00:24:39 +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