liukangdong
2024-09-29 b2d360d9113b6955287108ca9e90d76a1f3c1419
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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;
 
}