feiyu02
2025-03-21 e5bdf2e02090357cbd580d54e6cd2406dd541760
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.flightfeather.uav.lightshare.eunm
 
/**
 * @author riku
 * Date: 2021/11/26
 * 用电量监测对应的企业设备类型
 */
enum class ElectricityType(val value: Int){
    //产线设备
    ProductionLine(0),
    //净化设备
    Purify(1),
    //未知设备
    UnKnow(99),
}