riku
2021-11-17 3a7da032ec18b2d5d36afb3fd9622c7d763257b7
1
2
3
4
5
6
7
8
9
10
11
12
package com.flightfeather.uav.lightshare.eunm
 
/**
 * @author riku
 * Date: 2019/9/26
 */
enum class ElectricityType(val value: Int){
    //产线设备
    ProductionLine(0),
    //净化设备
    Purify(1)
}