郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
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
package com.gk.hotwork.doublePrevention.entity.dto.resp;
 
public class PreventRiskMeasureTemplatesListQueryRespDTO {
 
    /**
     * 主键
     */
    private Long id;
    /**
     * 排序字段
     */
    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 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;
    }
}