package com.gkhy.labRiskManage.domain.riskReport.model.dto;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* 辨识方法-Pha
|
*/
|
@Data
|
public class PhaQueryDTO{
|
|
private Long id;
|
/**
|
* 风险评估计划id
|
*/
|
private Long assessPlanId;
|
/**
|
* PHA_检查项目(辨识)
|
*/
|
private String phaCheckItem;
|
/**
|
* PHA_存在风险因素(辨识)
|
*/
|
private String phaRiskFactor;
|
/**
|
* PHA_可能产生的后果(辨识)
|
*/
|
private String phaResult;
|
/**
|
* 辨识结果:1-有风险;2-无风险;
|
*/
|
private Byte result;
|
/**
|
* 辨识专家意见
|
*/
|
private String identificationDesc;
|
/**
|
* 新建时间
|
*/
|
private LocalDateTime createTime;
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
|
|
}
|