feiyu02
2023-11-15 45fdeee912088efbd07a748a011682c6c6d1ce51
1
2
3
4
5
6
7
package com.flightfeather.monitor.enumration.dust
 
enum class DeviceStatus(val value: Int, val des: String) {
    ONLINE(0, "在线"),
    STOP(1, "停运"),
    OFFLINE(2, "离线"),
}