郑永安
2023-06-19 7a6abd05683528032687c75e80e0bd2030a3e46c
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
package com.gkhy.safePlatform.doublePrevention.repository.param;
 
import java.util.Date;
 
public class PreventRiskControlMeasureUpdateParams {
 
    /**
     * 主键
     */
    private Long id;
    /**
     * 风险管控措施编号
     */
    private String controlMeasureCode;
    /**
     * 管控方式:1-自动化监控,2-隐患排查
     */
    private Byte controlType;
    /**
     * 最后修改时间
     */
    private Date gmtModitify;
    /**
     * 管控措施分类1
     * 1-工程技术,2-维护保养,3-操作行为,4-应急设施
     */
    private Byte classify1;
    /**
     * 管控措施分类2
     * 1工程技术-工艺控制,关键设备/部件,安全附件,安全仪表,其他;
     * 2维护保养-动设备,静设备;3
     * 操作行为-人员资质,操作记录,交接班;
     * 4应急设施-应急设施,个体防护,消防设施,应急预案
     */
    private Byte classify2;
    /**
     * 管控措施分类3
     * 自定义
     */
    private String classify3;
    /**
     * 风险事件ID
     */
    private Long riskEventId;
    /**
     * 关联风险事件uuid
     */
    private String riskEventUuid;
    /**
     * 修改人
     */
    private String lastEditUserName;
 
    /**
     * 风险管控措施描述
     */
    private String measureDesc;
    /**
     * 同步数据修改时间
     */
    private Date updateReportDataTime;
    /**
     * 上报开关 1-上报;2-不上报
     */
    private Byte reportSwitch;
    /**
     * 同步状态
     */
    private Byte reportStatus;
 
    public Date getUpdateReportDataTime() {
        return updateReportDataTime;
    }
 
    public void setUpdateReportDataTime(Date updateReportDataTime) {
        this.updateReportDataTime = updateReportDataTime;
    }
 
    public Byte getReportSwitch() {
        return reportSwitch;
    }
 
    public void setReportSwitch(Byte reportSwitch) {
        this.reportSwitch = reportSwitch;
    }
 
    public Byte getReportStatus() {
        return reportStatus;
    }
 
    public void setReportStatus(Byte reportStatus) {
        this.reportStatus = reportStatus;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getControlMeasureCode() {
        return controlMeasureCode;
    }
 
    public void setControlMeasureCode(String controlMeasureCode) {
        this.controlMeasureCode = controlMeasureCode;
    }
 
    public Byte getControlType() {
        return controlType;
    }
 
    public void setControlType(Byte controlType) {
        this.controlType = controlType;
    }
 
    public Date getGmtModitify() {
        return gmtModitify;
    }
 
    public void setGmtModitify(Date gmtModitify) {
        this.gmtModitify = gmtModitify;
    }
 
    public Byte getClassify1() {
        return classify1;
    }
 
    public void setClassify1(Byte classify1) {
        this.classify1 = classify1;
    }
 
    public Byte getClassify2() {
        return classify2;
    }
 
    public void setClassify2(Byte classify2) {
        this.classify2 = classify2;
    }
 
    public String getClassify3() {
        return classify3;
    }
 
    public void setClassify3(String classify3) {
        this.classify3 = classify3;
    }
 
    public Long getRiskEventId() {
        return riskEventId;
    }
 
    public void setRiskEventId(Long riskEventId) {
        this.riskEventId = riskEventId;
    }
 
    public String getRiskEventUuid() {
        return riskEventUuid;
    }
 
    public void setRiskEventUuid(String riskEventUuid) {
        this.riskEventUuid = riskEventUuid;
    }
 
    public String getLastEditUserName() {
        return lastEditUserName;
    }
 
    public void setLastEditUserName(String lastEditUserName) {
        this.lastEditUserName = lastEditUserName;
    }
 
    public String getMeasureDesc() {
        return measureDesc;
    }
 
    public void setMeasureDesc(String measureDesc) {
        this.measureDesc = measureDesc;
    }
}