heheng
2025-05-23 761bdc5b3f17df62aae1b424f2d2dabc11e844bc
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
package com.gkhy.labRiskManage.application.experiment.dto.dto;
 
 
import com.gkhy.labRiskManage.api.controller.experiment.dto.resp.ExperimentAndEmergencyRespDTO;
import com.gkhy.labRiskManage.domain.experiment.entity.ExperimentAndType;
import com.gkhy.labRiskManage.domain.experiment.entity.ExperimentAssessLog;
import com.gkhy.labRiskManage.domain.experiment.model.dto.ExperimentAndSiteDTO;
import com.gkhy.labRiskManage.domain.experiment.model.dto.ExperimentAndTypeDTO;
import lombok.Data;
 
import javax.persistence.CascadeType;
import javax.persistence.FetchType;
import javax.persistence.JoinColumn;
import javax.persistence.OneToMany;
import java.time.LocalDateTime;
import java.util.List;
 
/**
 * 实验信息
 */
@Data
public class ExperimentInfoAppQueryDTO {
    private Long id;
    /**
     * 实验编号
     */
    private String experimentCode;
    /**
     * 自定义试验编号
     */
    private String experimentCustomCode;
    /**
     * 实验名称
     */
    private String experimentName;
    /**
     * 实验类型:1-化学类;2-生物类;3-辐射类;4-机电类;5-特种设备类;6-其它类
     */
    private Byte experimentType;
    /**
     * 实验类型名称
     */
    private String experimentTypeName;
    /**
     * 实验负责人id
     */
    private Long liabilityUserId;
 
    private String liabilityUserPhone;
 
    private String safeLiabilityUserPhone;
    /**
     * 实验负责人
     * (文字描述可能不再修改)
     */
    private String liabilityUser;
    /**
     * 安全负责人id
     */
    private Long safeLiabilityUserId;
    /**
     * 安全负责人(文字描述可能不再修改)
     */
    private String safeLiabilityUser;
    /**
     * 部门ID
     */
    private Long depId;
    /**
     * 部门(文字描述可能不再修改)
     */
    private String dep;
    /**
     * 场所ID
     */
    private Long siteId;
 
    /**
     * 实验开始时间
     */
    private LocalDateTime startTime;
    /**
     * 实验步骤
     */
    private String experimentStep;
    /**
     * 实验操作方法
     */
    private String experimentMethod;
    /**
     * 工艺流程
     */
    private String process;
    /**
     * 关键过程
     */
    private String keyProcess;
    /**
     * 是否存在过夜、老化实验。1-存在;2-不存在
     */
    private Byte timeout;
    /**
     * 过夜、老化实验保障管理措施
     */
    private String timeoutManager;
    /**
     * 是否在密闭条件下。1-密闭;2-不密闭
     */
    private Byte closed;
    /**
     * 非密闭实验保障管理措施
     */
    private String unclosedManager;
    /**
     * 实验场所防爆措施条件和设施情况
     */
    private String explosionProof;
    /**
     * 实验场所防火措施条件和设施情况
     */
    private String fireProof;
    /**
     * 实验场所防毒措施条件和设施情况
     */
    private String poisonProof;
    /**
     * 危废产生情况:1-有危废;2-无危废
     */
    private Byte hazardousWaste;
    /**
     * 安全管理制度
     */
    private String safeManagerMethod;
    /**
     * 是否是安全化信息系统(1是,2否)
     */
    private Byte sisStatus;
    /**
     * 安全信息化系统
     */
    private String safeInformationSystem;
    /**
     * 分区隔断情况
     */
    private Byte partitionCondition;
    /**
     * 其他基础信息
     */
    private String note;
    /**
     * 新建时间
     */
    private LocalDateTime createTime;
    /**
     * 修改时间
     */
    private LocalDateTime updateTime;
    /**
     * 最后修改人
     */
    private Integer updateByUserId;
    /**
     * 新建人
     */
    private Integer createByUserId;
    /**
     * 删除状态:0-正常;1-已删除
     */
    private Byte deleteStatus;
    /**
     * 实验评估状态:1-未评估;2-评估中;3-评估完成
     */
    private Byte stage;
    /**
     * 实验申请状态:1-未申请;2-已申请
     */
    private Byte status;
    /**
     * 实验标签:1-新立项;2-已开展
     */
    private Byte experimentTag;
    /**
     * 实验预期时间
     */
    private LocalDateTime createExperimentTime;
    /**
     * 风险评估等级
     */
    private Byte assessLevel;
    /**
     * 评估时间
     */
    private LocalDateTime assessTime;
    /**
     * 评估申请时间
     */
    private LocalDateTime assessApplyTime;
    /**
     * 措施
     */
    private String measure;
    /**
     * 整改
     */
    private Byte rectifyStatus;
    /**
     * 审核结果
     */
    private Byte approvalStatus;
    /**
     * 填报人
     */
    private String informant;
    /**
     * 填报人
     */
    private String assessPerson;
    /**
     * 暂存保存:1-保存;2-暂存
     */
    private Byte stagingTag;
 
    private Long reportId;
 
 
    private List<ExperimentAndTypeDTO> types;
 
    private List<ExperimentAndSiteDTO> sites;
 
    private List<ExperimentAndDeviceAppQueryDTO> devices;
 
    private List<ExperimentAndPersonAppQueryDTO> persons;
 
    private List<ExperimentHazardousWasteAppQueryDTO> wastes;
 
    private List<ExperimentAndStuffAppQueryDTO> stuffs;
 
 
    /**
     * 演练情况
     */
    private List<ExperimentAndEmergencyRespDTO> emergencies;
 
    private List<ExperimentAssessLog> experimentAssessLogs;
 
}