package com.gkhy.labRiskManage.application.experiment.dto.bo;
|
|
import com.gkhy.labRiskManage.api.controller.experiment.dto.req.ExperimentAndDeviceInsertReqBO;
|
import com.gkhy.labRiskManage.api.controller.experiment.dto.req.ExperimentAndStuffInsertReqBO;
|
import com.gkhy.labRiskManage.api.controller.experiment.dto.req.ExperimentHazardousWasteInsertReqBO;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
/**
|
* @email 1603559716@qq.com
|
* @author: zf
|
* @date: 2022/12/20
|
* @time: 15:25
|
*/
|
@Data
|
public class ExperimentAppInsertBO {
|
|
private Long id;
|
|
/**
|
* 实验名称
|
*/
|
private String experimentName;
|
/**
|
* 实验类型:1-化学类;2-生物类;3-辐射类;4-机电类;5-特种设备类;6-其它类
|
*/
|
private Byte experimentType;
|
/**
|
* 实验负责人id
|
*/
|
private Long liabilityUserId;
|
private String liabilityUserPhone;
|
|
/**
|
* 安全负责人id
|
*/
|
private Long safeLiabilityUserId;
|
|
private String safeLiabilityUser;
|
|
private String safeLiabilityUserPhone;
|
|
/**
|
* 部门
|
*/
|
private String dep;
|
|
/**
|
* 实验开始时间
|
*/
|
private LocalDateTime startTime;
|
/**
|
* 实验立项时间
|
*/
|
private LocalDateTime createExperimentTime;
|
/**
|
* 实验步骤
|
*/
|
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;
|
|
/**
|
* 安全管理制度
|
*/
|
private String safeManagerMethod;
|
/**
|
* 是否是安全化信息系统(1是,2否)
|
*/
|
private Byte sisStatus;
|
/**
|
* 安全信息化系统
|
*/
|
private String safeInformationSystem;
|
/**
|
* 分区隔断情况
|
*/
|
private Byte partitionCondition;
|
/**
|
* 其他基础信息
|
*/
|
private String note;
|
/**
|
* 实验评估状态:1-未评估;2-评估中;3-评估完成
|
*/
|
private Byte stage;
|
/**
|
* 实验申请状态:1-未申请;2-已申请
|
*/
|
private Byte status;
|
/**
|
* 实验标签:1-新立项;2-已开展
|
*/
|
private Byte experimentTag;
|
|
private String measure;
|
|
/**
|
* 危废情况
|
*/
|
private List<ExperimentHazardousWasteAppInsertBO> hazardousWasteList;
|
/**
|
* 实验耗材
|
*/
|
private List<ExperimentAndStuffAppInsertBO> stuffList;
|
/**
|
* 试验设备
|
*/
|
private List<ExperimentAndDeviceAppInsertBO> deviceList;
|
/**
|
* 实验人员
|
*/
|
private List<ExperimentAndPersonAppInsertBO> persons;
|
|
|
}
|