feiyu02
2025-12-30 6ddad5e82280f74961d907c8930c6b0fefbebdf0
1
2
3
4
5
6
7
8
9
10
11
package com.flightfeather.uav.lightshare.eunm
 
/**
 * 异常状态
 * @date 2025/5/14
 * @author feiyu02
 */
enum class ExceptionStatusType(val value: Int, val des: String) {
    InProgress(1, "持续中"),
    Ended(2, "已结束"),
}