package com.ruoyi.project.dc.facilitiesDistribution.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_facilities_distribution * * @author wm * @date 2020-12-07 */ public class FacilitiesDistribution extends BaseEntity { private static final long serialVersionUID = 1L; /** id */ private Long facilitiesDistributionId; /** 创建人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 setFacilitiesDistributionId(Long facilitiesDistributionId) { this.facilitiesDistributionId = facilitiesDistributionId; } public Long getFacilitiesDistributionId() { return facilitiesDistributionId; } 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("facilitiesDistributionId", getFacilitiesDistributionId()) .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(); } }