package com.gkhy.safePlatform.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
@TableName("prevent_task_and_measure")
|
public class PreventTaskAndMeasure {
|
/**
|
* 主键id
|
* */
|
@TableId(value = "id" , type = IdType.AUTO)
|
private Long id;
|
/**
|
* 排查任务Id
|
* */
|
private Long checkTaskId;
|
/**
|
* 管控措施Id
|
* */
|
private Long controlMeasureId;
|
/**
|
* 管控措施对应的排查内容
|
* */
|
private String checkContent;
|
/**
|
* 删除标志
|
* */
|
private Byte deleteStatus;
|
/**
|
* 单项检查内容结果
|
* */
|
private Byte checkResult;
|
|
public Byte getCheckResult() {
|
return checkResult;
|
}
|
|
public void setCheckResult(Byte checkResult) {
|
this.checkResult = checkResult;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Byte getDeleteStatus() {
|
return deleteStatus;
|
}
|
|
public void setDeleteStatus(Byte deleteStatus) {
|
this.deleteStatus = deleteStatus;
|
}
|
|
public String getCheckContent() {
|
return checkContent;
|
}
|
|
public void setCheckContent(String checkContent) {
|
this.checkContent = checkContent;
|
}
|
|
public Long getCheckTaskId() {
|
return checkTaskId;
|
}
|
|
public void setCheckTaskId(Long checkTaskId) {
|
this.checkTaskId = checkTaskId;
|
}
|
|
public Long getControlMeasureId() {
|
return controlMeasureId;
|
}
|
|
public void setControlMeasureId(Long controlMeasureId) {
|
this.controlMeasureId = controlMeasureId;
|
}
|
}
|