package com.ruoyi.doublePrevention.entity.dto.req;
|
|
public class PreventRiskEventUpdateReqDTO {
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 风险分析单元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 getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
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;
|
}
|
|
}
|