| | |
| | | package com.gkhy.labRiskManage.domain.riskReport.model.dto; |
| | | |
| | | import com.gkhy.labRiskManage.application.account.dto.respDto.UserEvaluateRespDTO; |
| | | import com.gkhy.labRiskManage.application.account.dto.respDto.UserIdentityRespDTO; |
| | | import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanEvaluateUser; |
| | | import com.gkhy.labRiskManage.domain.riskReport.entity.RiskAssessPlanIdentificationUser; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * |
| | |
| | | * 评估计划时间状态:1-未开始;2-评估中;3-已超期 |
| | | */ |
| | | private Byte planTimeStatus; |
| | | /** |
| | | * 辨识类型1线上专家2现场专家3线上+现场 |
| | | */ |
| | | private Byte identificationType; |
| | | /** |
| | | * 辨识方法:1-PHA;2-JHA;3-SCL;4-HAZOP;5-类比法 |
| | | */ |
| | |
| | | * 计划制定人人姓名 |
| | | */ |
| | | private String planUserName; |
| | | /** |
| | | * 辨识专家 |
| | | */ |
| | | private List<RiskAssessPlanIdentificationUser> riskAssessPlanIdentificationUsers; |
| | | |
| | | private List<RiskAssessPlanEvaluateUser> riskAssessPlanEvaluateUsers; |
| | | |
| | | private List<UserEvaluateRespDTO> evaluateUsers; |
| | | |
| | | private List<UserIdentityRespDTO> identityUsers; |
| | | } |
| | | |