package com.gkhy.labRiskManage.domain.riskReport.model.dto;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* 风险评估报告-实验可能有的危险源或危险因素类型
|
*/
|
public class ReportSourceTypeQueryDTO {
|
|
private Long id;
|
/**
|
* 报告id
|
*/
|
private Long reportId;
|
/**
|
* 危险源种类
|
*/
|
private String riskSourceType;
|
/**
|
* 状态:1-存在;2-不存在
|
*/
|
private Byte status;
|
/**
|
* 修改时间
|
*/
|
private LocalDateTime updateTime;
|
/**
|
* 新建时间
|
*/
|
private LocalDateTime createTime;
|
/**
|
* 最后修改人
|
*/
|
private Long updateByUserId;
|
/**
|
* 新建人
|
*/
|
private Long createByUserId;
|
|
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;
|
}
|
|
public LocalDateTime getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(LocalDateTime updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public LocalDateTime getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(LocalDateTime createTime) {
|
this.createTime = createTime;
|
}
|
|
public Long getUpdateByUserId() {
|
return updateByUserId;
|
}
|
|
public void setUpdateByUserId(Long updateByUserId) {
|
this.updateByUserId = updateByUserId;
|
}
|
|
public Long getCreateByUserId() {
|
return createByUserId;
|
}
|
|
public void setCreateByUserId(Long createByUserId) {
|
this.createByUserId = createByUserId;
|
}
|
|
}
|