k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
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
package com.doumee.biz.zbom.model.zhongtai.response;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Map;
 
 
/**
 * 商品详情返回
 */
@Data
public class ZTVideoInfoResponse implements Serializable {
    private String author;
    /**
     * 收藏数量
     */
    private Integer collectCount;
    /**
     * 封面图
     */
    private String coverImage;
    /**
     * id
     */
    private String id;
    /**
     * 是否收藏
     */
    private Boolean isCollection;
    private String langCode;
    /**
     * 喜欢数量
     */
    private long likeCount;
    /**
     * 发布组织
     */
    private String publishDepartment;
    /**
     * 发布时间
     */
    private String publishDt;
    /**
     * 分享数量
     */
    private long shareCount;
    private String subtitle;
    /**
     * 标题
     */
    private String title;
    /**
     * 视频链接
     */
    private String videoUrl;
    /**
     * 浏览数量
     */
    private Integer viewCount;
}