package com.ruoyi.project.tr.articleRegulation.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;
|
|
/**
|
* 法律法规政策文章对象 tr_article_regulation
|
*
|
* @author wm
|
* @date 2020-06-11
|
*/
|
public class ArticleRegulation extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 法律法规政策文章表主键 */
|
private Long articleRegulationId;
|
|
/** 法律法规文章标题 */
|
@Excel(name = "法律法规文章标题")
|
private String regulationTitle;
|
|
/** 法律法规文章内容 */
|
@Excel(name = "法律法规文章内容")
|
private String regulationContent;
|
|
/** 公司id */
|
@Excel(name = "公司id")
|
private Long companyId;
|
|
/** 法律法规文章类型 */
|
@Excel(name = "法律法规文章类型")
|
private Integer regulationType;
|
|
private String ownedFile;
|
|
public String getOwnedFile() {
|
return ownedFile;
|
}
|
|
public void setOwnedFile(String ownedFile) {
|
this.ownedFile = ownedFile;
|
}
|
|
public void setArticleRegulationId(Long articleRegulationId)
|
{
|
this.articleRegulationId = articleRegulationId;
|
}
|
|
public Long getArticleRegulationId()
|
{
|
return articleRegulationId;
|
}
|
public void setRegulationTitle(String regulationTitle)
|
{
|
this.regulationTitle = regulationTitle;
|
}
|
|
public String getRegulationTitle()
|
{
|
return regulationTitle;
|
}
|
public void setRegulationContent(String regulationContent)
|
{
|
this.regulationContent = regulationContent;
|
}
|
|
public String getRegulationContent()
|
{
|
return regulationContent;
|
}
|
public void setCompanyId(Long companyId)
|
{
|
this.companyId = companyId;
|
}
|
|
public Long getCompanyId()
|
{
|
return companyId;
|
}
|
public void setRegulationType(Integer regulationType)
|
{
|
this.regulationType = regulationType;
|
}
|
|
public Integer getRegulationType()
|
{
|
return regulationType;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("articleRegulationId", getArticleRegulationId())
|
.append("createBy", getCreateBy())
|
.append("createTime", getCreateTime())
|
.append("updateBy", getUpdateBy())
|
.append("updateTime", getUpdateTime())
|
.append("remark", getRemark())
|
.append("regulationTitle", getRegulationTitle())
|
.append("regulationContent", getRegulationContent())
|
.append("companyId", getCompanyId())
|
.append("regulationType", getRegulationType())
|
.toString();
|
}
|
}
|