feiyu02
2025-09-12 61871594dfa0a5ac2c4d895d9ec4034feba57094
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.flightfeather.uav.biz.dataanalysis
 
import com.flightfeather.uav.lightshare.eunm.ExceptionStatusType
import java.io.Serializable
import java.util.*
 
/**
 * 异常结果基类
 * @date 2025/5/13
 * @author feiyu02
 */
abstract class BaseExceptionResult : Serializable {
    // 异常编号
    var guid: String? = null
 
    // 异常的状态
    var status: Int = ExceptionStatusType.InProgress.value
 
    var factorId: Int? = null
    var factorName: String? = null
 
    init {
        guid = UUID.randomUUID().toString()
    }
 
}