package com.gkhy.labRiskManage.api.controller.riskReport.dto.respDto;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* 风险评估报告-实验可能有的危险源或危险因素类型
|
*/
|
public class ReportSourceTypeQueryRespDTO {
|
|
private Long id;
|
/**
|
* 报告id
|
*/
|
private Long reportId;
|
/**
|
* 危险源种类
|
*/
|
private String riskSourceType;
|
/**
|
* 状态:1-存在;2-不存在
|
*/
|
private Byte status;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getReportId() {
|
return reportId;
|
}
|
|
public void setReportId(Long reportId) {
|
this.reportId = reportId;
|
}
|
|
public String getRiskSourceType() {
|
return riskSourceType;
|
}
|
|
public void setRiskSourceType(String riskSourceType) {
|
this.riskSourceType = riskSourceType;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
}
|