package com.ruoyi.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_risk_danger_check_and_measure")
|
public class PreventRiskDangerCheckAndMeasure {
|
|
/**
|
* 主键
|
* */
|
@TableId(value = "id" , type = IdType.AUTO)
|
private Long id;
|
/**
|
* 核查任务id
|
* */
|
private Long checkId;
|
/**
|
* 核查任务附属表id
|
* */
|
private Long dangerCheckPointId;
|
/**
|
* 核查点id
|
* */
|
private Long baseCheckPointId;
|
/**
|
* 管控措施id
|
* */
|
private Long controlMeasureId;
|
/**
|
* job id
|
* */
|
private String checkContent;
|
/**
|
* 排查结果:0-正常,1-存在隐患,2-未处理,3其他
|
* */
|
private Byte checkResult;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getDangerCheckPointId() {
|
return dangerCheckPointId;
|
}
|
|
public void setDangerCheckPointId(Long dangerCheckPointId) {
|
this.dangerCheckPointId = dangerCheckPointId;
|
}
|
|
public Long getCheckId() {
|
return checkId;
|
}
|
|
public void setCheckId(Long checkId) {
|
this.checkId = checkId;
|
}
|
|
public Long getBaseCheckPointId() {
|
return baseCheckPointId;
|
}
|
|
public void setBaseCheckPointId(Long baseCheckPointId) {
|
this.baseCheckPointId = baseCheckPointId;
|
}
|
|
public Long getControlMeasureId() {
|
return controlMeasureId;
|
}
|
|
public void setControlMeasureId(Long controlMeasureId) {
|
this.controlMeasureId = controlMeasureId;
|
}
|
|
public String getCheckContent() {
|
return checkContent;
|
}
|
|
public void setCheckContent(String checkContent) {
|
this.checkContent = checkContent;
|
}
|
|
public Byte getCheckResult() {
|
return checkResult;
|
}
|
|
public void setCheckResult(Byte checkResult) {
|
this.checkResult = checkResult;
|
}
|
}
|