双重预防项目-国泰新华二开定制版
heheng
2025-06-19 46c37398a52d1dcf81788960ec90faa91249e77f
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
75
76
77
78
79
80
81
82
83
84
package com.ruoyi.doublePrevention.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
 
import java.io.Serializable;
 
/**
 * (PreventRiskControlTemplate)实体类
 *
 * @author makejava
 * @since 2022-06-25 10:40:17
 */
@TableName("prevent_risk_control_template")
public class PreventRiskControlTemplate implements Serializable {
    /**
     * 主键
     */
    private Long id;
 
    /**
     * 删除标志:0-有效,1-删除
     */
    private Integer deleteStatus;
    /**
     * 排序字段
     */
    private Integer orderIndex;
    /**
     * 父级别措施id
     */
    private Long parentId;
    /**
     *
  风控措施名称 :
  管控措施分类1:1-工程技术,2-维护保养,3-操作行为,4-应急设施;
  管控措施分类2 子级目录:
    1、工程技术:1-工艺控制,2-关键设备/部件,3-安全附件,4-安全仪表,5-其他;
    2、维护保养:1-动设备,2-静设备;
    3、操作行为:1-人员资质,2-操作记录,3-交接班;
    4、应急设施:1-应急设施,2-个体防护,3-消防设施,4-应急预案
     */
    private String riskMeasureName;
 
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getDeleteStatus() {
        return deleteStatus;
    }
 
    public void setDeleteStatus(Integer deleteStatus) {
        this.deleteStatus = deleteStatus;
    }
 
    public Integer getOrderIndex() {
        return orderIndex;
    }
 
    public void setOrderIndex(Integer orderIndex) {
        this.orderIndex = orderIndex;
    }
 
    public Long getParentId() {
        return parentId;
    }
 
    public void setParentId(Long parentId) {
        this.parentId = parentId;
    }
 
    public String getRiskMeasureName() {
        return riskMeasureName;
    }
 
    public void setRiskMeasureName(String riskMeasureName) {
        this.riskMeasureName = riskMeasureName;
    }
}