feiyu02
2021-12-02 74ffc8ebf3a25d2e3cee758954ce6efc163cb864
src/main/kotlin/com/flightfeather/uav/lightshare/eunm/ElectricityType.kt
@@ -2,11 +2,14 @@
/**
 * @author riku
 * Date: 2019/9/26
 * Date: 2021/11/26
 * 用电量监测对应的企业设备类型
 */
enum class ElectricityType(val value: Int){
    //产线设备
    ProductionLine(0),
    //净化设备
    Purify(1)
    Purify(1),
    //未知设备
    UnKnow(99),
}