heheng
2025-03-10 c0ae989839d8323974048b71f7dadc29a20a4b15
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
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;
    }
 
}