郑永安
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
package com.gkhy.safePlatform.doublePrevention.repository.param;
 
import java.util.Date;
 
public class PreventDangerManageUpdateParams {
 
    /**
     * 主键
     */
    private Long id;
 
    /**
     * 隐患等级:1-一般隐患,2-重大隐患
     */
    private Byte dangerLevel;
    /**
     * 隐患类型:1-安全;2-工艺,3-电气;4-仪表,5-消防;6-总图,7-设备;8-其他
     */
    private Byte dangerType;
    /**
     * 隐患来源:1-日常排查,2-综合性排查,3-专业性排查,4-季节性排查,5-重点时段及节假日前排查,
     6-事故类比排查,7-复产复工前排查,8-外聘专家诊断式排查,9-管控措施失效,10-其他
     */
    private Byte dangerSource;
    /**
     * 生产装置Id
     */
    private Long produceDeviceId;
    /**
     * 隐患情况描述
     */
    private String dangerDesc;
    /**
     * 隐患产生原因分析
     */
    private String dangerReason;
    /**
     * 最后修改时间
     */
    private Date gmtModitify;
    /**
     * 修改人
     */
    private String lastEditUserName;
    /**
     * 同步数据修改时间
     */
    private Date updateReportDataTime;
    /**
     * 隐患所属部门id
     */
    private Long depId;
    /**
     * 风险分析单元id
     */
    private Long riskUnitId;
    /**
     * 隐患可能后果:1-无;2-轻伤;3-重伤;4-死亡
     */
    private Byte dangerResult;
    /**
     * 同步状态
     */
    private Byte reportStatus;
    /**
     * 上报开关 1-上报;2-不上报
     */
    private Byte reportSwitch;
    /**
     * 隐患名称
     */
    private String dangerCode;
 
    public String getDangerCode() {
        return dangerCode;
    }
 
    public void setDangerCode(String dangerCode) {
        this.dangerCode = dangerCode;
    }
 
    public Byte getReportStatus() {
        return reportStatus;
    }
 
    public void setReportStatus(Byte reportStatus) {
        this.reportStatus = reportStatus;
    }
 
    public Byte getReportSwitch() {
        return reportSwitch;
    }
 
    public void setReportSwitch(Byte reportSwitch) {
        this.reportSwitch = reportSwitch;
    }
 
    public Long getDepId() {
        return depId;
    }
 
    public void setDepId(Long depId) {
        this.depId = depId;
    }
 
    public Long getRiskUnitId() {
        return riskUnitId;
    }
 
    public void setRiskUnitId(Long riskUnitId) {
        this.riskUnitId = riskUnitId;
    }
 
    public Byte getDangerResult() {
        return dangerResult;
    }
 
    public void setDangerResult(Byte dangerResult) {
        this.dangerResult = dangerResult;
    }
 
    public Date getUpdateReportDataTime() {
        return updateReportDataTime;
    }
 
    public void setUpdateReportDataTime(Date updateReportDataTime) {
        this.updateReportDataTime = updateReportDataTime;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Byte getDangerLevel() {
        return dangerLevel;
    }
 
    public void setDangerLevel(Byte dangerLevel) {
        this.dangerLevel = dangerLevel;
    }
 
    public Byte getDangerType() {
        return dangerType;
    }
 
    public void setDangerType(Byte dangerType) {
        this.dangerType = dangerType;
    }
 
    public Byte getDangerSource() {
        return dangerSource;
    }
 
    public void setDangerSource(Byte dangerSource) {
        this.dangerSource = dangerSource;
    }
 
    public Long getProduceDeviceId() {
        return produceDeviceId;
    }
 
    public void setProduceDeviceId(Long produceDeviceId) {
        this.produceDeviceId = produceDeviceId;
    }
 
    public String getDangerDesc() {
        return dangerDesc;
    }
 
    public void setDangerDesc(String dangerDesc) {
        this.dangerDesc = dangerDesc;
    }
 
    public String getDangerReason() {
        return dangerReason;
    }
 
    public void setDangerReason(String dangerReason) {
        this.dangerReason = dangerReason;
    }
 
    public Date getGmtModitify() {
        return gmtModitify;
    }
 
    public void setGmtModitify(Date gmtModitify) {
        this.gmtModitify = gmtModitify;
    }
 
    public String getLastEditUserName() {
        return lastEditUserName;
    }
 
    public void setLastEditUserName(String lastEditUserName) {
        this.lastEditUserName = lastEditUserName;
    }
}