package com.ruoyi.doublePrevention.entity; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; /** * (PreventRiskControlTemplate)实体类 * * @author makejava * @since 2022-06-25 10:40:17 */ @TableName("prevent_risk_control_template") public class PreventRiskControlTemplate implements Serializable { /** * 主键 */ private Long id; /** * 删除标志:0-有效,1-删除 */ private Integer deleteStatus; /** * 排序字段 */ private Integer orderIndex; /** * 父级别措施id */ private Long parentId; /** * 风控措施名称 : 管控措施分类1:1-工程技术,2-维护保养,3-操作行为,4-应急设施; 管控措施分类2 子级目录: 1、工程技术:1-工艺控制,2-关键设备/部件,3-安全附件,4-安全仪表,5-其他; 2、维护保养:1-动设备,2-静设备; 3、操作行为:1-人员资质,2-操作记录,3-交接班; 4、应急设施:1-应急设施,2-个体防护,3-消防设施,4-应急预案 */ private String riskMeasureName; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Integer getDeleteStatus() { return deleteStatus; } public void setDeleteStatus(Integer deleteStatus) { this.deleteStatus = deleteStatus; } public Integer getOrderIndex() { return orderIndex; } public void setOrderIndex(Integer orderIndex) { this.orderIndex = orderIndex; } public Long getParentId() { return parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public String getRiskMeasureName() { return riskMeasureName; } public void setRiskMeasureName(String riskMeasureName) { this.riskMeasureName = riskMeasureName; } }