package com.gkhy.labRiskManage.domain.riskReport.model.dto; import javax.persistence.*; import java.io.Serializable; import java.math.BigDecimal; import java.time.LocalDateTime; /** * 评价方法RS */ @Entity @Table(name = "risk_assess_plan_evaluate_rs") public class RsInsertDTO implements Serializable { private static final long serialVersionUID = 642761023880479465L; @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; /** * 风险评估计划id */ private Long assessPlanId; /** * RS_R的数值(评价) */ private BigDecimal rsR; /** * RS_S的数值(评价) */ private BigDecimal rsS; /** * 删除状态:1-正常;2-已删除 */ private Byte deleteStatus; /** * 新建时间 */ private LocalDateTime createTime; /** * 修改时间 */ private LocalDateTime updateTime; /** * 安全风险分析 */ private String safeRiskAnalysis; /** * 辨识方法id */ private Long identificationId; /** * 辨识方法类型 */ private Byte identificationMethod; /** * 风险数值 */ private BigDecimal riskValue; /** * 风险等级值:风险值区间级别,1-1级,2-2级,3-3级,4-4级,5-5级 */ private Byte riskLevelValue; /** * 风险级别:1-低,2-一般,3-较大,4-重大 */ private Byte riskLevel; /** * 风险色:1-蓝色;2-黄色;3-橙色;4-红色 */ private Byte riskColor; /** * 管理层级:1-院所级;2-部门级;3-项目组级 */ private Byte manageLevel; /** * 评价状态:0-未评价过;1-已编写评价 */ private Byte status; /** * 评价专家意见 */ private String evaluateDesc; public String getEvaluateDesc() { return evaluateDesc; } public void setEvaluateDesc(String evaluateDesc) { this.evaluateDesc = evaluateDesc; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public BigDecimal getRiskValue() { return riskValue; } public void setRiskValue(BigDecimal riskValue) { this.riskValue = riskValue; } public Byte getRiskLevelValue() { return riskLevelValue; } public void setRiskLevelValue(Byte riskLevelValue) { this.riskLevelValue = riskLevelValue; } public Byte getRiskLevel() { return riskLevel; } public void setRiskLevel(Byte riskLevel) { this.riskLevel = riskLevel; } public Byte getRiskColor() { return riskColor; } public void setRiskColor(Byte riskColor) { this.riskColor = riskColor; } public Byte getManageLevel() { return manageLevel; } public void setManageLevel(Byte manageLevel) { this.manageLevel = manageLevel; } public Long getIdentificationId() { return identificationId; } public void setIdentificationId(Long identificationId) { this.identificationId = identificationId; } public Byte getIdentificationMethod() { return identificationMethod; } public void setIdentificationMethod(Byte identificationMethod) { this.identificationMethod = identificationMethod; } public LocalDateTime getCreateTime() { return createTime; } public void setCreateTime(LocalDateTime createTime) { this.createTime = createTime; } public LocalDateTime getUpdateTime() { return updateTime; } public void setUpdateTime(LocalDateTime updateTime) { this.updateTime = updateTime; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getAssessPlanId() { return assessPlanId; } public void setAssessPlanId(Long assessPlanId) { this.assessPlanId = assessPlanId; } public BigDecimal getRsR() { return rsR; } public void setRsR(BigDecimal rsR) { this.rsR = rsR; } public BigDecimal getRsS() { return rsS; } public void setRsS(BigDecimal rsS) { this.rsS = rsS; } public Byte getDeleteStatus() { return deleteStatus; } public void setDeleteStatus(Byte deleteStatus) { this.deleteStatus = deleteStatus; } }