package com.gkhy.labRiskManage.domain.riskReport.model.dto;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* 评价方法LS
|
*/
|
public class LsInsertDTO {
|
|
private Long id;
|
/**
|
* 风险评估计划id
|
*/
|
private Long assessPlanId;
|
/**
|
* LS_L的数值(评价)
|
*/
|
private BigDecimal lsL;
|
/**
|
* LS_S的数值(评价)
|
*/
|
private BigDecimal lsS;
|
|
/**
|
* 新建时间
|
*/
|
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 getLsL() {
|
return lsL;
|
}
|
|
public void setLsL(BigDecimal lsL) {
|
this.lsL = lsL;
|
}
|
|
public BigDecimal getLsS() {
|
return lsS;
|
}
|
|
public void setLsS(BigDecimal lsS) {
|
this.lsS = lsS;
|
}
|
|
}
|