| | |
| | | |
| | | |
| | | import com.gkhy.labRiskManage.api.controller.experiment.dto.req.ExperimentAndEmergencyInsertReqBO; |
| | | import com.gkhy.labRiskManage.domain.experiment.entity.ExperimentAssessLog; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | |
| | | * 实验类型:1-化学类;2-生物类;3-辐射类;4-机电类;5-特种设备类;6-其它类 |
| | | */ |
| | | private Byte experimentType; |
| | | /** |
| | | * 实验类型名称 |
| | | */ |
| | | private String experimentTypeName; |
| | | /** |
| | | * 实验负责人id |
| | | */ |
| | |
| | | */ |
| | | private String assessPerson; |
| | | |
| | | /** |
| | | * 暂存保存:1-保存;2-暂存 |
| | | */ |
| | | private Byte stagingTag; |
| | | |
| | | private List<ExperimentAndTypeRespDTO> typeList; |
| | | |
| | | private List<ExperimentAndSiteRespDTO> siteList; |
| | | |
| | | private List<ExperimentAndPersonRespDTO> persons; |
| | |
| | | private List<ExperimentAndEmergencyRespDTO> emergencyList; |
| | | |
| | | |
| | | private List<ExperimentAssessLog> experimentAssessLogs; |
| | | } |
| | | |