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