package com.doumee.biz.zbom.model.zhongtai.response; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.io.Serializable; /** * 内容分页列表返回内容 */ @Data public class ZTCollectInfoResponse implements Serializable { /** * 收藏数 */ private Integer collectCount; /** * 内容ID */ private String contentId; /** * 内容标题 */ private String contentTitle; /** * 内容封面 */ private String coverImage; /** * 收藏创建时间 */ private String createTime; /** * 下载数 */ private String downloadCount; /** * 内容跳转URL,无跳转则为空字符串 */ private String jumpUrl; /** * 点赞数 */ private String praiseCount; /** * 分享数 */ private String shareCount; /** * 查看数 */ private Integer viewCount; }