jiangping
2024-07-18 a5845873604f6d038c1cf2441b20173c3a4dfcb5
server/service/src/main/java/com/doumee/biz/zbom/model/zhongtai/response/ZTZbDecoInfoResponse.java
@@ -11,24 +11,30 @@
@Data
public class ZTZbDecoInfoResponse implements Serializable {
    private String author;
    /**
     * 收藏量
     */
    private long collectCount;
    private String id;
    /**
     * 是否收藏 true:收藏  false:未收藏
     * 内容
     */
    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 linkUrl;
    private String publishDepartment;
    /**
     * 发布日期
@@ -40,9 +46,5 @@
     * 标题
     */
    private String title;
    /**
     * 查看量
     */
    private long viewCount;
    private String viewCount;
}