feiyu02
2021-12-02 74ffc8ebf3a25d2e3cee758954ce6efc163cb864
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.flightfeather.uav.lightshare.eunm
 
/**
 * @author riku
 * Date: 2021/12/2
 * 用电量监测的设备的运行状态
 */
enum class ElectricityStatus(val value: Int, val des: String) {
    A(0, "待机"),
    B(1, "低负荷运行或预热"),
    C(2, "运行"),
    D(3, "超负荷"),
}