package com.gkhy.labRiskManage.api.controller.riskReport.dto.repDto;
|
|
/**
|
* 风险评估报告-实验可能有的危险源或危险因素类型
|
*/
|
public class ReportSourceTypeInsertReqBO {
|
private Long id;
|
/**
|
* 报告id
|
*/
|
private Long reportId;
|
/**
|
* 危险源种类
|
*/
|
private Long riskSourceTypeId;
|
/**
|
* 状态: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 Long getRiskSourceTypeId() {
|
return riskSourceTypeId;
|
}
|
|
public void setRiskSourceTypeId(Long riskSourceTypeId) {
|
this.riskSourceTypeId = riskSourceTypeId;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
}
|