package com.ruoyi.project.tr.article.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;
|
|
import java.util.Date;
|
|
/**
|
* 公司信息(文章)对象 tr_article
|
*
|
* @author wm
|
* @date 2020-05-05
|
*/
|
public class Article extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** id */
|
@Excel(name = "id")
|
private Long articleId;
|
|
//搜索开始时间
|
private Date beginCreateTime;
|
//搜索结束时间
|
private Date endCreateTime;
|
|
public Date getBeginCreateTime() {
|
return beginCreateTime;
|
}
|
|
public void setBeginCreateTime(Date beginCreateTime) {
|
this.beginCreateTime = beginCreateTime;
|
}
|
|
public Date getEndCreateTime() {
|
return endCreateTime;
|
}
|
|
public void setEndCreateTime(Date endCreateTime) {
|
this.endCreateTime = endCreateTime;
|
}
|
|
/** 标题 */
|
@Excel(name = "标题")
|
private String articleTitle;
|
|
/** 内容 */
|
@Excel(name = "内容")
|
private String articleContent;
|
|
/** 所属公司 */
|
@Excel(name = "所属公司")
|
private Long companyId;
|
|
/** 类型 */
|
@Excel(name = "类型")
|
private Long articleType;
|
|
private String ownedFile;
|
|
public String getOwnedFile() {
|
return ownedFile;
|
}
|
|
public void setOwnedFile(String ownedFile) {
|
this.ownedFile = ownedFile;
|
}
|
|
public void setArticleId(Long articleId)
|
{
|
this.articleId = articleId;
|
}
|
|
public Long getArticleId()
|
{
|
return articleId;
|
}
|
public void setArticleTitle(String articleTitle)
|
{
|
this.articleTitle = articleTitle;
|
}
|
|
public String getArticleTitle()
|
{
|
return articleTitle;
|
}
|
public void setArticleContent(String articleContent)
|
{
|
this.articleContent = articleContent;
|
}
|
|
public String getArticleContent()
|
{
|
return articleContent;
|
}
|
public void setCompanyId(Long companyId)
|
{
|
this.companyId = companyId;
|
}
|
|
public Long getCompanyId()
|
{
|
return companyId;
|
}
|
public void setArticleType(Long articleType)
|
{
|
this.articleType = articleType;
|
}
|
|
public Long getArticleType()
|
{
|
return articleType;
|
}
|
|
@Override
|
public String toString() {
|
return "Article{" +
|
"articleId=" + articleId +
|
", beginCreateTime=" + beginCreateTime +
|
", endCreateTime=" + endCreateTime +
|
", articleTitle='" + articleTitle + '\'' +
|
", articleContent='" + articleContent + '\'' +
|
", companyId=" + companyId +
|
", articleType=" + articleType +
|
"} " + super.toString();
|
}
|
}
|