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