双重预防项目-国泰新华二开定制版
heheng
2025-06-20 40e6b02f26a7c0a1911a69b951c948f582df4032
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
67
68
69
70
71
72
73
74
/**
 * 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 DcAttachmentTypeEnum {
 
    /**
     * 第三方检测
     */
    Third_Party_Testing(1, "第三方检测附件"),
 
    Standardization(2, "标准化达标"),
 
    Security_Documents(3, "安全体系文件"),
 
    Industry_Qualification(4, "行业资质"),
 
    Incident_Report(5, "事件上报"),
 
    Factory_Evacuation(6, "厂区疏散"),
 
    Facilities_Distribution(7, "消防设施分布"),
 
    Emergency_Plan(8, "应急预案"),
 
    Emergency_Drills(9, "应急演练"),
 
    Accident_Information(10, "事故信息"),
 
    Article(11, "公司信息"),
 
    Article_Regulation(11, "法律法规"),
 
 
 
 
 
    ;
 
    /**
     *  评价方法
     */
    private Integer type;
 
    /**
     * 风险值
     */
    private String msg;
 
    DcAttachmentTypeEnum(Integer type, String msg) {
        this.type = type;
        this.msg = msg;
    }
 
    public Integer getType() {
        return type;
    }
 
    public String getMsg() {
        return msg;
    }
}