package com.ruoyi.project.dc.factoryEvacuation.domain;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
import com.ruoyi.framework.web.domain.BaseEntity;
|
|
/**
|
* 厂区疏散对象 dc_factory_evacuation
|
*
|
* @author wm
|
* @date 2020-12-07
|
*/
|
public class FactoryEvacuation extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
private Long factoryEvacuationId;
|
|
/** 创建人id */
|
@Excel(name = "创建人id")
|
private Long createUserId;
|
|
/** 更新者id */
|
@Excel(name = "更新者id")
|
private Long updateUserId;
|
|
/** 区域/场所 */
|
@Excel(name = "区域/场所")
|
private String areaName;
|
|
/** 场地文件 */
|
@Excel(name = "场地文件")
|
private String ownedFile;
|
|
/** 场地图片 */
|
@Excel(name = "场地图片")
|
private String ownedPicture;
|
|
//公司id
|
private Long companyId;
|
|
public Long getCompanyId() {
|
return companyId;
|
}
|
|
public void setCompanyId(Long companyId) {
|
this.companyId = companyId;
|
}
|
|
public void setFactoryEvacuationId(Long factoryEvacuationId)
|
{
|
this.factoryEvacuationId = factoryEvacuationId;
|
}
|
|
public Long getFactoryEvacuationId()
|
{
|
return factoryEvacuationId;
|
}
|
public void setCreateUserId(Long createUserId)
|
{
|
this.createUserId = createUserId;
|
}
|
|
public Long getCreateUserId()
|
{
|
return createUserId;
|
}
|
public void setUpdateUserId(Long updateUserId)
|
{
|
this.updateUserId = updateUserId;
|
}
|
|
public Long getUpdateUserId()
|
{
|
return updateUserId;
|
}
|
public void setAreaName(String areaName)
|
{
|
this.areaName = areaName;
|
}
|
|
public String getAreaName()
|
{
|
return areaName;
|
}
|
public void setOwnedFile(String ownedFile)
|
{
|
this.ownedFile = ownedFile;
|
}
|
|
public String getOwnedFile()
|
{
|
return ownedFile;
|
}
|
public void setOwnedPicture(String ownedPicture)
|
{
|
this.ownedPicture = ownedPicture;
|
}
|
|
public String getOwnedPicture()
|
{
|
return ownedPicture;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("factoryEvacuationId", getFactoryEvacuationId())
|
.append("createBy", getCreateBy())
|
.append("createUserId", getCreateUserId())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateUserId", getUpdateUserId())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("areaName", getAreaName())
|
.append("ownedFile", getOwnedFile())
|
.append("ownedPicture", getOwnedPicture())
|
.toString();
|
}
|
}
|