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 ZTContentInfoResponse implements Serializable {
|
/**
|
* 作者
|
*/
|
@ApiModelProperty(value = "author")
|
private String author;
|
/**
|
* 内容详情
|
*/
|
@ApiModelProperty(value = "内容详情")
|
private Map<String, Object> content;
|
/**
|
* 文章类型
|
*/
|
@ApiModelProperty(value = "文章类型")
|
private String contentType;
|
/**
|
* 文章ID
|
*/
|
@ApiModelProperty(value = "文章ID")
|
private String id;
|
/**
|
* 语言编码
|
*/
|
@ApiModelProperty(value = "语言编码")
|
private String langCode;
|
/**
|
* 多图片列表
|
*/
|
@ApiModelProperty(value = "多图片列表")
|
private String picUrls;
|
/**
|
* 发布日期
|
*/
|
@ApiModelProperty(value = "发布日期")
|
private String publishDate;
|
/**
|
* 发布组织
|
*/
|
@ApiModelProperty(value = "发布组织")
|
private String publishDepartment;
|
/**
|
* 子标题
|
*/
|
@ApiModelProperty(value = "子标题")
|
private String subtitle;
|
/**
|
* 文章标题
|
*/
|
@ApiModelProperty(value = "文章标题")
|
private String title;
|
|
}
|