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
package com.doumee.biz.zbom.model.zhongtai.response;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
 
/**
 * C端录播图
 */
@Data
public class ZTCusCarouselImageResponse implements Serializable {
 
    @ApiModelProperty(value = "文章ID")
    private String id;
 
    @ApiModelProperty(value = "语言编码")
    private String langCode;
 
    @ApiModelProperty(value = "文章标题")
    private String title;
 
    @ApiModelProperty(value = "文章副标题")
    private String subtitle;
 
    @ApiModelProperty(value = "文章作者")
    private String author;
 
    @ApiModelProperty(value = "发布日期")
    private String publishDate;
 
    @ApiModelProperty(value = "发布组织")
    private String publishDepartment;
 
    @ApiModelProperty(value = "封面图片")
    private String coverImage;
 
    @ApiModelProperty(value = "内容打开方式(内部页面page、视频video、富文本text、外部链接link)")
    private String openType;
 
    @ApiModelProperty(value = "跳转内容")
    private String openContent;
 
}