| | |
| | | package com.gkhy.labRiskManage.application.riskReport.dto.dto; |
| | | |
| | | import com.gkhy.labRiskManage.api.controller.basic.dto.respDto.OldRiskAssessResDTO; |
| | | import com.gkhy.labRiskManage.api.controller.riskReport.dto.respDto.ReportExperimentSiteQueryRespDTO; |
| | | import com.gkhy.labRiskManage.api.controller.riskReport.dto.respDto.ReportPersonQueryRespDTO; |
| | | import com.gkhy.labRiskManage.api.controller.riskReport.dto.respDto.ReportRiskSourceQueryRespDTO; |
| | | import com.gkhy.labRiskManage.api.controller.riskReport.dto.respDto.ReportSourceTypeQueryRespDTO; |
| | | import com.gkhy.labRiskManage.domain.basic.entity.OldRiskAssess; |
| | | import com.gkhy.labRiskManage.domain.experiment.entity.ExperimentAndType; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | |
| | | */ |
| | | private LocalDateTime evaluateTime; |
| | | |
| | | /** |
| | | * 工艺流程 |
| | | */ |
| | | private String process; |
| | | |
| | | List<ReportPersonQueryRespDTO> person; |
| | | /** |
| | | * 风险源类型 |
| | |
| | | * |
| | | */ |
| | | List<ReportExperimentSiteQueryRespDTO> experimentSite; |
| | | /** |
| | | * 实验类型 |
| | | */ |
| | | List<ExperimentAndType> experimentAndType; |
| | | /** |
| | | * 附件 |
| | | */ |
| | | List<OldRiskAssessResDTO> oldRiskAssess; |
| | | } |
| | | |