feiyu02
2025-09-30 94fee0b511279679b43e210878d3d36e5a14384b
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),
}