forest/src/main/java/com/rymcu/vertical/dto/ArticleDTO.java
2019-11-18 19:04:39 +08:00

43 lines
1.1 KiB
Java

package com.rymcu.vertical.dto;
import lombok.Data;
import java.util.Date;
@Data
public class ArticleDTO {
private Integer idArticle ;
/** 文章标题 */
private String articleTitle ;
/** 文章缩略图 */
private String articleThumbnailUrl ;
/** 文章作者id */
private Integer articleAuthorId ;
/** 文章作者 */
private String articleAuthorName ;
/** 文章作者头像 */
private String articleAuthorAvatarUrl ;
/** 文章类型 */
private String articleType ;
/** 文章标签 */
private String articleTags ;
/** 浏览总数 */
private Integer articleViewCount ;
/** 预览内容 */
private String articlePreviewContent ;
/** 文章内容 */
private String articleContent ;
/** 评论总数 */
private Integer commentCount ;
/** 过去时长 */
private String timeAgo ;
/** 文章永久链接 */
private String articlePermalink ;
/** 站内链接 */
private String articleLink ;
/** 更新时间 */
private Date updatedTime ;
private Author articleAuthor;
}