huangzhen
2022-09-06 f7714d7740d5969b603993eebe91d1e0f4ee1081
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
package com.ruoyi.doublePrevention.entity.dto.req;
 
public class PreventRiskEventSaveReqDTO {
 
    /**
     * 风险分析单元id
     */
    private Long riskUnitId;
    /**
     * 安全风险事件名称
     */
    private String riskEventName;
    /**
     * 安全风险结果
     */
    private String eventResult;
 
    public String getEventResult() {
        return eventResult;
    }
 
    public void setEventResult(String eventResult) {
        this.eventResult = eventResult;
    }
 
    public Long getRiskUnitId() {
        return riskUnitId;
    }
 
    public void setRiskUnitId(Long riskUnitId) {
        this.riskUnitId = riskUnitId;
    }
 
    public String getRiskEventName() {
        return riskEventName;
    }
 
    public void setRiskEventName(String riskEventName) {
        this.riskEventName = riskEventName;
    }
}