zmc
2023-12-14 357c5a3c4659f1fe9e46e8c20827ab757c5d3929
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, "离线"),
}