package com.gkhy.safePlatform.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.util.Date;
|
import java.io.Serializable;
|
|
/**
|
* (PreventDangerCheckContent)实体类
|
*
|
* @author makejava
|
* @since 2022-06-25 10:40:19
|
*/
|
@TableName("prevent_danger_check_content")
|
public class PreventDangerCheckContent implements Serializable {
|
|
/**
|
* 主键
|
*/
|
@TableId(value = "id" , type = IdType.AUTO)
|
private Long id;
|
|
/**
|
* 关联风险管控措施id
|
*/
|
private Long controlMeasureId;
|
/**
|
* 关联风险管控措施uuid
|
*/
|
private String controlMeasureUuid;
|
/**
|
* 隐患排查内容
|
*/
|
private String checkContent;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
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 String getControlMeasureUuid() {
|
return controlMeasureUuid;
|
}
|
|
public void setControlMeasureUuid(String controlMeasureUuid) {
|
this.controlMeasureUuid = controlMeasureUuid;
|
}
|
}
|