package com.gkhy.safePlatform.doublePrevention.entity.dto.resp;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import java.io.Serializable;
|
|
|
public class PreventrCheckContentRespDTO implements Serializable {
|
/**
|
* 主键id
|
* */
|
private Long id;
|
/**
|
* 排查任务Id
|
* */
|
private Long checkTaskId;
|
/**
|
* 管控措施Id
|
* */
|
private Long controlMeasureId;
|
/**
|
* 管控措施对应的排查内容
|
* */
|
private String checkContent;
|
/**
|
* 单项检查内容结果
|
* */
|
private Byte checkResult;
|
|
|
//措施表信息
|
/**
|
* 管控方式:1-自动化监控,2-隐患排查,3-其他
|
*/
|
private Byte controlType;
|
/**
|
* 管控措施分类1
|
* 1-工程技术,2-维护保养,3-操作行为,4-应急设施
|
*/
|
private Byte classify1;
|
/**
|
* 管控措施分类2
|
* 1工程技术-工艺控制,关键设备/部件,安全附件,安全仪表,其他;
|
* 2维护保养-动设备,静设备;3
|
* 操作行为-人员资质,操作记录,交接班;
|
* 4应急设施-应急设施,个体防护,消防设施,应急预案
|
*/
|
private Byte classify2;
|
/**
|
* 管控措施分类3
|
* 自定义
|
*/
|
private String classify3;
|
/**
|
* 风险管控措施描述
|
*/
|
private String measureDesc;
|
/**
|
* 风险管控措施编号
|
*/
|
private String controlMeasureCode;
|
|
public Byte getControlType() {
|
return controlType;
|
}
|
|
public void setControlType(Byte controlType) {
|
this.controlType = controlType;
|
}
|
|
public Byte getClassify1() {
|
return classify1;
|
}
|
|
public void setClassify1(Byte classify1) {
|
this.classify1 = classify1;
|
}
|
|
public Byte getClassify2() {
|
return classify2;
|
}
|
|
public void setClassify2(Byte classify2) {
|
this.classify2 = classify2;
|
}
|
|
public String getClassify3() {
|
return classify3;
|
}
|
|
public void setClassify3(String classify3) {
|
this.classify3 = classify3;
|
}
|
|
public String getMeasureDesc() {
|
return measureDesc;
|
}
|
|
public void setMeasureDesc(String measureDesc) {
|
this.measureDesc = measureDesc;
|
}
|
|
public String getControlMeasureCode() {
|
return controlMeasureCode;
|
}
|
|
public void setControlMeasureCode(String controlMeasureCode) {
|
this.controlMeasureCode = controlMeasureCode;
|
}
|
|
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 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;
|
}
|
|
public String getCheckContent() {
|
return checkContent;
|
}
|
|
public void setCheckContent(String checkContent) {
|
this.checkContent = checkContent;
|
}
|
}
|