package com.ruoyi.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* (PreventRiskEvent)实体类
|
*
|
* @author makejava
|
* @since 2022-06-25 10:40:16
|
*/
|
@TableName("prevent_risk_event")
|
public class PreventRiskEvent implements Serializable {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
private String uuid;
|
/**
|
* 删除标志:0-有效,1-删除
|
*/
|
private Byte deleteStatus;
|
/**
|
* 创建时间
|
*/
|
private Date gmtCreate;
|
/**
|
* 最后修改时间
|
*/
|
private Date gmtModitify;
|
/**
|
* 所属安全风险分析单元id
|
*/
|
private Long riskUnitId;
|
/**
|
* 企业id
|
*/
|
private Long enterpriseId;
|
/**
|
* 所属安全风险分析单元uuid
|
*/
|
private String riskUnitUuid;
|
/**
|
* 企业uuid
|
*/
|
private String enterpriseUuid;
|
/**
|
* 安全风险事件名称
|
*/
|
private String riskEventName;
|
/**
|
* 创建人
|
*/
|
private String createByUserName;
|
/**
|
* 修改人
|
*/
|
private String lastEditUserName;
|
/**
|
* 同步时间
|
*/
|
private Date reportTime;
|
/**
|
* 同步数据修改时间
|
*/
|
private Date updateReportDataTime;
|
/**
|
* 上报状态 1-待上报;2-已上报;3-不上报
|
*/
|
private Byte reportStatus;
|
/**
|
* 上报开关 1-上报;2-不上报
|
*/
|
private Byte reportSwitch;
|
/**
|
* 可能照成的后果
|
*/
|
private String eventResult;
|
|
public String getEventResult() {
|
return eventResult;
|
}
|
|
public void setEventResult(String eventResult) {
|
this.eventResult = eventResult;
|
}
|
|
public Byte getReportSwitch() {
|
return reportSwitch;
|
}
|
|
public void setReportSwitch(Byte reportSwitch) {
|
this.reportSwitch = reportSwitch;
|
}
|
|
public Date getReportTime() {
|
return reportTime;
|
}
|
|
public void setReportTime(Date reportTime) {
|
this.reportTime = reportTime;
|
}
|
|
public Date getUpdateReportDataTime() {
|
return updateReportDataTime;
|
}
|
|
public void setUpdateReportDataTime(Date updateReportDataTime) {
|
this.updateReportDataTime = updateReportDataTime;
|
}
|
|
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 getUuid() {
|
return uuid;
|
}
|
|
public void setUuid(String uuid) {
|
this.uuid = uuid;
|
}
|
|
public Byte getDeleteStatus() {
|
return deleteStatus;
|
}
|
|
public void setDeleteStatus(Byte deleteStatus) {
|
this.deleteStatus = deleteStatus;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public Long getRiskUnitId() {
|
return riskUnitId;
|
}
|
|
public void setRiskUnitId(Long riskUnitId) {
|
this.riskUnitId = riskUnitId;
|
}
|
|
public Long getEnterpriseId() {
|
return enterpriseId;
|
}
|
|
public void setEnterpriseId(Long enterpriseId) {
|
this.enterpriseId = enterpriseId;
|
}
|
|
public String getRiskUnitUuid() {
|
return riskUnitUuid;
|
}
|
|
public void setRiskUnitUuid(String riskUnitUuid) {
|
this.riskUnitUuid = riskUnitUuid;
|
}
|
|
public String getEnterpriseUuid() {
|
return enterpriseUuid;
|
}
|
|
public void setEnterpriseUuid(String enterpriseUuid) {
|
this.enterpriseUuid = enterpriseUuid;
|
}
|
|
public String getRiskEventName() {
|
return riskEventName;
|
}
|
|
public void setRiskEventName(String riskEventName) {
|
this.riskEventName = riskEventName;
|
}
|
|
public String getCreateByUserName() {
|
return createByUserName;
|
}
|
|
public void setCreateByUserName(String createByUserName) {
|
this.createByUserName = createByUserName;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public String getLastEditUserName() {
|
return lastEditUserName;
|
}
|
|
public void setLastEditUserName(String lastEditUserName) {
|
this.lastEditUserName = lastEditUserName;
|
}
|
}
|