jiangping
2024-07-12 3faf877e3ca03028d60bba265249a543e8f9b533
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package com.doumee.biz.zbom.model.zhongtai.response;
 
import lombok.Data;
 
 
/**
 * 内容分页列表返回内容
 */
@Data
public class ZTContentListResponse {
    /**
     * 作者
     */
    private String author;
    /**
     * 封面图
     */
    private String coverImage;
    /**
     * 收藏量
     */
    private double favoriteCount;
    /**
     * 文章ID
     */
    private String id;
    /**
     * 是否置顶
     */
    private String isTop;
    /**
     * 语言编码
     */
    private String langCode;
    /**
     * 点赞量
     */
    private double likeCount;
    /**
     * 发布日期
     */
    private String publishDate;
    /**
     * 发布组织
     */
    private String publishDepartment;
    /**
     * 阅读量
     */
    private double readCount;
    /**
     * 排序
     */
    private String sort;
    /**
     * 子标题
     */
    private String subtitle;
    /**
     * 标题
     */
    private String title;
    /**
     * 文章类型
     */
    private String type;
    /**
     * 文章外链URL,视频和其他跳转链接类型
     */
    private String url;
 
}