package com.xcong.farmer.cms.core.tag.data; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; import java.util.List; /** * @author wzy * @date 2022-07-05 **/ public class ArticleData { @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date createTime; private Long id; private String title; private String subTitle; private String thumb; private String content; private String author; private String views; private String company; private String filePath; private List images; private String url; private String description; private ArticleData next; private ArticleData prev; private List children; public String getCompany() { return company; } public void setCompany(String company) { this.company = company; } public ArticleData getNext() { return next; } public void setNext(ArticleData next) { this.next = next; } public ArticleData getPrev() { return prev; } public void setPrev(ArticleData prev) { this.prev = prev; } public String getFilePath() { return filePath; } public void setFilePath(String filePath) { this.filePath = filePath; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getSubTitle() { return subTitle; } public void setSubTitle(String subTitle) { this.subTitle = subTitle; } public String getThumb() { return thumb; } public void setThumb(String thumb) { this.thumb = thumb; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public List getImages() { return images; } public void setImages(List images) { this.images = images; } public String getViews() { return views; } public void setViews(String views) { this.views = views; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public List getChildren() { return children; } public void setChildren(List children) { this.children = children; } }