package com.gk.hotwork.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
|
@TableName("prevent_report_batch")
|
public class PreventReportBatch {
|
|
/**
|
* 主键id
|
* */
|
@TableId(value = "id" , type = IdType.AUTO)
|
private Long id;
|
/**
|
* batchId 批次上报后,返回的id
|
* */
|
private String batchId;
|
/**
|
* batchTime 批次上报后,接收到返回值的时间
|
* */
|
private Date reportTime;
|
/**
|
* 上报数据来源标识
|
* */
|
private String dataSource;
|
/**
|
* 上报数据类型
|
* 1-风险分析单元
|
* 2-风险事件
|
* 3-风险管控措施
|
* 4-任务配置
|
* 5-任务记录
|
* 6-隐患信息
|
* */
|
private Byte dataType;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getBatchId() {
|
return batchId;
|
}
|
|
public void setBatchId(String batchId) {
|
this.batchId = batchId;
|
}
|
|
public Date getReportTime() {
|
return reportTime;
|
}
|
|
public void setReportTime(Date reportTime) {
|
this.reportTime = reportTime;
|
}
|
|
public Byte getDataType() {
|
return dataType;
|
}
|
|
public void setDataType(Byte dataType) {
|
this.dataType = dataType;
|
}
|
|
public String getDataSource() {
|
return dataSource;
|
}
|
|
public void setDataSource(String dataSource) {
|
this.dataSource = dataSource;
|
}
|
}
|