feiyu02
23 小时以前 4a976d3763be8a7bed743faf24abf2718ae18e31
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),
}