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 = "openType") private String openType; @ApiModelProperty(value = "pageUrl") private String pageUrl; @ApiModelProperty(value = "videoUrl") private String videoUrl; @ApiModelProperty(value = "content") private String content; @ApiModelProperty(value = "linkUrl") private String linkUrl; @ApiModelProperty(value = "coverImage") private String coverImage; @ApiModelProperty(value = "infoProTypeName") private String infoProTypeName; }