package com.gkhy.safePlatform.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.gkhy.safePlatform.doublePrevention.enums.DeviceStatusEnum;
|
|
import java.util.Date;
|
import java.io.Serializable;
|
import java.util.UUID;
|
|
/**
|
* (PreventProduceDevice)实体类
|
*
|
* @author makejava
|
* @since 2022-06-25 10:40:17
|
*/
|
@TableName("prevent_produce_device")
|
public class PreventProduceDevice implements Serializable {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
private String uuid;
|
/**
|
* 删除标志:0-有效,1-删除
|
*/
|
private Byte deleteStatus;
|
/**
|
* 风险等级:1-低风险,2-一般风险,3-较大风险,4-重大风险
|
*/
|
private Byte riskLevel;
|
/**
|
* 风险源状态:1-使用中,2-已弃用
|
*/
|
private Byte status;
|
/**
|
* 创建时间
|
*/
|
private Date gmtCreate;
|
/**
|
* 最后修改时间
|
*/
|
private Date gmtModitify;
|
/**
|
* 所属部门id
|
*/
|
private Long depId;
|
/**
|
* 企业id
|
*/
|
private Long enterpriseId;
|
/**
|
* 所属部门uuid
|
*/
|
private String depUuid;
|
/**
|
* 企业uuid
|
*/
|
private String enterpriseUuid;
|
/**
|
* 所属部门名称
|
*/
|
private String depName;
|
/**
|
* 创建人
|
*/
|
private String createByUserName;
|
/**
|
* 修改人
|
*/
|
private String lastEditUserName;
|
/**
|
* 风险源/管控对象
|
*/
|
private String produceDeviceName;
|
/**
|
* 所在区域
|
*/
|
private String location;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getUuid() {
|
//uuid
|
return uuid;
|
}
|
|
public void setUuid(String uuid) {
|
this.uuid = uuid;
|
}
|
|
public Byte getDeleteStatus() {
|
return deleteStatus;
|
}
|
|
public void setDeleteStatus(Byte deleteStatus) {
|
this.deleteStatus = deleteStatus;
|
}
|
|
public Byte getRiskLevel() {
|
return riskLevel;
|
}
|
|
public void setRiskLevel(Byte riskLevel) {
|
this.riskLevel = riskLevel;
|
}
|
|
public Byte getStatus() {
|
return status;
|
}
|
|
public void setStatus(Byte status) {
|
this.status = status;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Long getEnterpriseId() {
|
return enterpriseId;
|
}
|
|
public void setEnterpriseId(Long enterpriseId) {
|
this.enterpriseId = enterpriseId;
|
}
|
|
public String getDepUuid() {
|
return depUuid;
|
}
|
|
public void setDepUuid(String depUuid) {
|
this.depUuid = depUuid;
|
}
|
|
public String getEnterpriseUuid() {
|
return enterpriseUuid;
|
}
|
|
public void setEnterpriseUuid(String enterpriseUuid) {
|
this.enterpriseUuid = enterpriseUuid;
|
}
|
|
public String getDepName() {
|
return depName;
|
}
|
|
public void setDepName(String depName) {
|
this.depName = depName;
|
}
|
|
public String getCreateByUserName() {
|
return createByUserName;
|
}
|
|
public void setCreateByUserName(String createByUserName) {
|
this.createByUserName = createByUserName;
|
}
|
|
public String getLastEditUserName() {
|
return lastEditUserName;
|
}
|
|
public void setLastEditUserName(String lastEditUserName) {
|
this.lastEditUserName = lastEditUserName;
|
}
|
|
public String getProduceDeviceName() {
|
return produceDeviceName;
|
}
|
|
public void setProduceDeviceName(String produceDeviceName) {
|
this.produceDeviceName = produceDeviceName;
|
}
|
|
public String getLocation() {
|
return location;
|
}
|
|
public void setLocation(String location) {
|
this.location = location;
|
}
|
|
}
|