1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
| /**
| * Copyright (c) 2020 ucsmy.com, All rights reserved.
| */
| package com.ruoyi.project.enumerate;
|
| import lombok.Getter;
|
| /**
| * @Description: 评价未重大,其对应的各项数值
| * @Author: Administrator
| * @Created Date: 2020年05月10日
| * @LastModifyDate:
| * @LastModifyBy:
| * @Version:
| */
| @Getter
| public enum TrRiskTypeEnum {
|
|
| /**
| * 设备设置
| */
| DEVICE(1, "设备设施"),
|
| /**
| * 作业活动
| */
| WORK(2, "作业活动"),
|
| /**
| * 工艺节点
| */
| CRAFTS(3, "工艺节点"),
|
| /**
| * 基础清单
| */
| BASE(4, "基础清单"),
|
| /**
| * 区域,作业场所
| */
| ROOM(5, "区域,作业场所")
| ;
|
| /**
| * 类型数字
| */
| private Integer code;
|
| /**
| * 类型描述
| */
| private String msg;
|
|
|
|
|
| TrRiskTypeEnum(Integer code, String msg) {
| this.code = code;
| this.msg = msg;
|
| }
|
| }
|
|