1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.flightfeather.thirdapp.model.enumreation
 
/**
 * @author riku
 * Date: 2020/10/19
 */
enum class MediaFileType(val value: Int, val des: String) {
    Problem(1, "问题"),
    TechnicalPrevention(2,"技防措施"),
 
    MonitorDevice(3, "监测设备"),
    ManageDevice(4, "治理设备"),
 
    RoutineRecord(5, "常规记录"),
    Signature(6, "签字"),
 
    Nameplate(7, "铭牌"),
    Others(99,"其他")
}