package com.ruoyi.project.dc.securityDocuments.domain; import com.ruoyi.project.dc.securityType.domain.SecurityType; 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_security_documents * * @author wm * @date 2020-12-09 */ public class SecurityDocuments extends BaseEntity { private static final long serialVersionUID = 1L; /** id */ private Long documentsId; /** 创建人id */ @Excel(name = "创建人id") private Long createUserId; /** 更新者id */ @Excel(name = "更新者id") private Long updateUserId; /** 文件类型 */ @Excel(name = "文件类型") private Long documentType; private SecurityType securityType; /** 文件名称 */ @Excel(name = "文件名称") private String documentName; /** 使用范围 */ @Excel(name = "使用范围") private String trialScope; /** 所属文件 */ @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 SecurityType getSecurityType() { return securityType; } public void setSecurityType(SecurityType securityType) { this.securityType = securityType; } public void setDocumentsId(Long documentsId) { this.documentsId = documentsId; } public Long getDocumentsId() { return documentsId; } 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 setDocumentType(Long documentType) { this.documentType = documentType; } public Long getDocumentType() { return documentType; } public void setDocumentName(String documentName) { this.documentName = documentName; } public String getDocumentName() { return documentName; } public void setTrialScope(String trialScope) { this.trialScope = trialScope; } public String getTrialScope() { return trialScope; } 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("documentsId", getDocumentsId()) .append("createBy", getCreateBy()) .append("createUserId", getCreateUserId()) .append("createTime", getCreateTime()) .append("updateBy", getUpdateBy()) .append("updateUserId", getUpdateUserId()) .append("updateTime", getUpdateTime()) .append("remark", getRemark()) .append("documentType", getDocumentType()) .append("documentName", getDocumentName()) .append("trialScope", getTrialScope()) .append("ownedFile", getOwnedFile()) .append("ownedPicture", getOwnedPicture()) .toString(); } }