package com.gk.hotwork.doublePrevention.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* (PreventRiskMapServiceImpl)实体类
|
*
|
* @author makejava
|
* @since 2022-06-25 10:40:05
|
*/
|
@TableName("prevent_risk_map")
|
public class PreventRiskMap implements Serializable {
|
/**
|
* 主键
|
*/
|
private Long id;
|
|
private String uuid;
|
/**
|
* 删除标志:0-有效,1-删除
|
*/
|
private Byte deleteStatus;
|
/**
|
* 创建时间
|
*/
|
private Date gmtCreate;
|
/**
|
* 最后修改时间
|
*/
|
private Date gmtModitify;
|
/**
|
* 企业id
|
*/
|
private Long enterpriseId;
|
/**
|
* 企业uuid
|
*/
|
private String enterpriseUuid;
|
/**
|
* 描述信息
|
*/
|
private String descInfo;
|
/**
|
* 图片路径
|
*/
|
private String imgPath;
|
/**
|
* 创建人
|
*/
|
private String createByUserName;
|
/**
|
* 修改人
|
*/
|
private String lastEditUserName;
|
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getUuid() {
|
return uuid;
|
}
|
|
public void setUuid(String uuid) {
|
this.uuid = uuid;
|
}
|
|
public Byte getDeleteStatus() {
|
return deleteStatus;
|
}
|
|
public void setDeleteStatus(Byte deleteStatus) {
|
this.deleteStatus = deleteStatus;
|
}
|
|
public Date getGmtModitify() {
|
return gmtModitify;
|
}
|
|
public void setGmtModitify(Date gmtModitify) {
|
this.gmtModitify = gmtModitify;
|
}
|
|
public Long getEnterpriseId() {
|
return enterpriseId;
|
}
|
|
public void setEnterpriseId(Long enterpriseId) {
|
this.enterpriseId = enterpriseId;
|
}
|
|
public String getEnterpriseUuid() {
|
return enterpriseUuid;
|
}
|
|
public void setEnterpriseUuid(String enterpriseUuid) {
|
this.enterpriseUuid = enterpriseUuid;
|
}
|
|
public String getDescInfo() {
|
return descInfo;
|
}
|
|
public void setDescInfo(String descInfo) {
|
this.descInfo = descInfo;
|
}
|
|
public String getImgPath() {
|
return imgPath;
|
}
|
|
public void setImgPath(String imgPath) {
|
this.imgPath = imgPath;
|
}
|
|
public String getCreateByUserName() {
|
return createByUserName;
|
}
|
|
public void setCreateByUserName(String createByUserName) {
|
this.createByUserName = createByUserName;
|
}
|
|
public Date getGmtCreate() {
|
return gmtCreate;
|
}
|
|
public void setGmtCreate(Date gmtCreate) {
|
this.gmtCreate = gmtCreate;
|
}
|
|
public String getLastEditUserName() {
|
return lastEditUserName;
|
}
|
|
public void setLastEditUserName(String lastEditUserName) {
|
this.lastEditUserName = lastEditUserName;
|
}
|
}
|