package com.gkhy.labRiskManage.domain.riskReport.model.dto;
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
@Data
|
public class SclQueryDTO {
|
|
private Long id;
|
/**
|
* 风险评估计划id
|
*/
|
private Long assessPlanId;
|
/**
|
* SCL_检查项目(辨识)
|
*/
|
private String sclCheckItem;
|
/**
|
* SCL_检查标准(辨识)
|
*/
|
private String sclCheckStandard;
|
/**
|
* SCL_不符合标准情况(辨识)
|
*/
|
private String sclCheckUnstandard;
|
/**
|
* SCL_主要后果(辨识)
|
*/
|
private String sclCheckResult;
|
|
/**
|
* 辨识结果:1-有风险;2-无风险;
|
*/
|
private Byte result;
|
/**
|
* 辨识专家意见
|
*/
|
private String identificationDesc;
|
/**
|
* 新建时间
|
*/
|
private LocalDateTime createTime;
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
|
private String fileData;
|
|
}
|