package com.doumee.biz.zbom.model.zhongtai.response; 
 | 
  
 | 
import lombok.Data; 
 | 
  
 | 
import java.io.Serializable; 
 | 
  
 | 
  
 | 
/** 
 | 
 * 案例详情返回 
 | 
 */ 
 | 
@Data 
 | 
public class ZTZbDecoInfoResponse implements Serializable { 
 | 
    private String author; 
 | 
    private Integer collectCount; 
 | 
    /** 
 | 
     * 内容 
 | 
     */ 
 | 
    private String content; 
 | 
    /** 
 | 
     * 内容类型(文本text、链接link、视频video、产品product) 
 | 
     */ 
 | 
    private String contentType; 
 | 
    /** 
 | 
     * 封面图 
 | 
     */ 
 | 
    private String coverImage; 
 | 
    /** 
 | 
     * id 
 | 
     */ 
 | 
    private String id; 
 | 
    private String intro; 
 | 
    /** 
 | 
     * 是否收藏 
 | 
     */ 
 | 
    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 Integer viewCount; 
 | 
} 
 |