| 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; | 
|   | 
| } |