郑永安
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
202
203
204
205
206
207
package com.gkhy.safePlatform.doublePrevention.entity.dto.req;
 
 
import com.fasterxml.jackson.annotation.JsonFormat;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class PreventDangerManageSaveReqDTO {
    //隐患单
    /**
     * 隐患情况描述
     */
    private String dangerDesc;
    /**
     * 隐患所属部门id
     */
    private Long depId;
    /**
     * 生产装置Id
     */
    private Long produceDeviceId;
    /**
     * 风险分析单元id
     */
    private Long riskUnitId;
    /**
     * 隐患来源:1-日常排查,2-综合性排查,3-专业性排查,4-季节性排查,5-重点时段及节假日前排查,
     6-事故类比排查,7-复产复工前排查,8-外聘专家诊断式排查,9-管控措施失效,10-其他
     */
    private Byte dangerSource;
    /**
     * 隐患等级:1-一般隐患,2-重大隐患
     */
    private Byte dangerLevel;
    /**
     * 隐患类型:1-安全;2-工艺,3-电气;4-仪表,5-消防;6-总图,7-设备;8-其他
     */
    private Byte dangerType;
    /**
     * 隐患产生原因分析
     */
    private String dangerReason;
    /**
     * 隐患可能后果:1-无;2-轻伤;3-重伤;4-死亡
     */
    private Byte dangerResult;
 
    //整改单
    /**
     * 整改类型:1-即查即改,2-限期整改
     */
    private Byte rectifyType;
    /**
     * 整改责任人
     */
    private Long liablePersonId;
    /**
     * 整改期限
     */
    @JsonFormat(locale="zh", timezone="GMT+8", pattern="yyyy-MM-dd HH:mm:ss")
    private Date rectifyTime;
    /**
     * 整改资金
     */
    private BigDecimal cost;
    /**
     * 整改内容
     */
    private String rectifyDesc;
    /**
     * 施工单位
     */
    private Long rectifyDepId;
    /**
     * 隐患名称
     */
    private String dangerCode;
 
    public String getDangerCode() {
        return dangerCode;
    }
 
    public void setDangerCode(String dangerCode) {
        this.dangerCode = dangerCode;
    }
 
    public Long getRectifyDepId() {
        return rectifyDepId;
    }
 
    public void setRectifyDepId(Long rectifyDepId) {
        this.rectifyDepId = rectifyDepId;
    }
 
    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 getRectifyType() {
        return rectifyType;
    }
 
    public void setRectifyType(Byte rectifyType) {
        this.rectifyType = rectifyType;
    }
 
    public Byte getDangerResult() {
        return dangerResult;
    }
 
    public void setDangerResult(Byte dangerResult) {
        this.dangerResult = dangerResult;
    }
 
    public Long getLiablePersonId() {
        return liablePersonId;
    }
 
    public void setLiablePersonId(Long liablePersonId) {
        this.liablePersonId = liablePersonId;
    }
 
    public Date getRectifyTime() {
        return rectifyTime;
    }
 
    public void setRectifyTime(Date rectifyTime) {
        this.rectifyTime = rectifyTime;
    }
 
    public BigDecimal getCost() {
        return cost;
    }
 
    public void setCost(BigDecimal cost) {
        this.cost = cost;
    }
 
    public String getRectifyDesc() {
        return rectifyDesc;
    }
 
    public void setRectifyDesc(String rectifyDesc) {
        this.rectifyDesc = rectifyDesc;
    }
 
    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;
    }
}