package com.ruoyi.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* 风险清单对象 tr_risk_list
|
*
|
*/
|
@TableName("tr_risk_list")
|
public class PreventRiskList implements Serializable {
|
|
/** id */
|
private Long riskListId;
|
|
/** 创建者 */
|
private String createBy;
|
|
/** 创建时间 */
|
private Date createTime;
|
|
/** 更新者 */
|
private String updateBy;
|
|
/** 更新时间 */
|
private Date updateTime;
|
|
/** 备注 */
|
private String remark;
|
|
/** 风险单元编号 */
|
private String riskListNum;
|
|
/** 风险单元名称 */
|
private String riskListName;
|
|
/** 是否特种(1否,2是) */
|
private Long riskListIsSpecial;
|
|
/** 图片 */
|
private String riskListImgUrl;
|
|
/** 设备设施类型 */
|
private Long riskListDeviceType;
|
|
/** 规格/型号 */
|
private String riskListDeviceModel;
|
|
/** 作业活动类型 */
|
private Long riskListWorkType;
|
|
/** 作业频率 */
|
private Long riskListWorkFrequency;
|
|
/** 工艺作业类型 */
|
private Long riskListCraftsType;
|
|
/** 节点描述 */
|
private String riskListCraftsDescription;
|
|
/** 区域/位置 */
|
private Long regionId;
|
|
/** 管辖单位/部门 */
|
private Long deptId;
|
|
/** 负责人 */
|
private Long userId;
|
|
|
/** 风险单元类型(1设备设置,2作业活动,3工艺节点) */
|
private Integer riskType;
|
|
/** 所属公司 */
|
private Long companyId;
|
|
public Long getRiskListId() {
|
return riskListId;
|
}
|
|
public void setRiskListId(Long riskListId) {
|
this.riskListId = riskListId;
|
}
|
|
public String getCreateBy() {
|
return createBy;
|
}
|
|
public void setCreateBy(String createBy) {
|
this.createBy = createBy;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getUpdateBy() {
|
return updateBy;
|
}
|
|
public void setUpdateBy(String updateBy) {
|
this.updateBy = updateBy;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
public String getRiskListNum() {
|
return riskListNum;
|
}
|
|
public void setRiskListNum(String riskListNum) {
|
this.riskListNum = riskListNum;
|
}
|
|
public String getRiskListName() {
|
return riskListName;
|
}
|
|
public void setRiskListName(String riskListName) {
|
this.riskListName = riskListName;
|
}
|
|
public Long getRiskListIsSpecial() {
|
return riskListIsSpecial;
|
}
|
|
public void setRiskListIsSpecial(Long riskListIsSpecial) {
|
this.riskListIsSpecial = riskListIsSpecial;
|
}
|
|
public String getRiskListImgUrl() {
|
return riskListImgUrl;
|
}
|
|
public void setRiskListImgUrl(String riskListImgUrl) {
|
this.riskListImgUrl = riskListImgUrl;
|
}
|
|
public Long getRiskListDeviceType() {
|
return riskListDeviceType;
|
}
|
|
public void setRiskListDeviceType(Long riskListDeviceType) {
|
this.riskListDeviceType = riskListDeviceType;
|
}
|
|
public String getRiskListDeviceModel() {
|
return riskListDeviceModel;
|
}
|
|
public void setRiskListDeviceModel(String riskListDeviceModel) {
|
this.riskListDeviceModel = riskListDeviceModel;
|
}
|
|
public Long getRiskListWorkType() {
|
return riskListWorkType;
|
}
|
|
public void setRiskListWorkType(Long riskListWorkType) {
|
this.riskListWorkType = riskListWorkType;
|
}
|
|
public Long getRiskListWorkFrequency() {
|
return riskListWorkFrequency;
|
}
|
|
public void setRiskListWorkFrequency(Long riskListWorkFrequency) {
|
this.riskListWorkFrequency = riskListWorkFrequency;
|
}
|
|
public Long getRiskListCraftsType() {
|
return riskListCraftsType;
|
}
|
|
public void setRiskListCraftsType(Long riskListCraftsType) {
|
this.riskListCraftsType = riskListCraftsType;
|
}
|
|
public String getRiskListCraftsDescription() {
|
return riskListCraftsDescription;
|
}
|
|
public void setRiskListCraftsDescription(String riskListCraftsDescription) {
|
this.riskListCraftsDescription = riskListCraftsDescription;
|
}
|
|
public Long getRegionId() {
|
return regionId;
|
}
|
|
public void setRegionId(Long regionId) {
|
this.regionId = regionId;
|
}
|
|
public Long getDeptId() {
|
return deptId;
|
}
|
|
public void setDeptId(Long deptId) {
|
this.deptId = deptId;
|
}
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
public Integer getRiskType() {
|
return riskType;
|
}
|
|
public void setRiskType(Integer riskType) {
|
this.riskType = riskType;
|
}
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
}
|