feiyu02
2021-12-02 74ffc8ebf3a25d2e3cee758954ce6efc163cb864
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),
}