k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.doumee.biz.zbom.model.zhongtai.response;
 
import com.doumee.biz.zbom.model.zhongtai.APISpaceCaseVo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
 
/**
 * 实景案例详情返回
 */
@Data
public class ZTRealcaseInfoResponse  extends ZTImageListResponse  implements Serializable {
 
    private String caseInfo;
    private Integer collectCount;
    /**
     * 主图
     */
    @ApiModelProperty(value = "主图")
    private String coverImage;
    private String id;
    private String[] imgList;
    /**
     * 是否收藏 true:收藏  false:未收藏
     */
    private Boolean isCollection;
    /**
     * 发布日期
     */
    @ApiModelProperty(value = "发布日期")
    private String publishDt;
    /**
     * 标题
     */
    private String title;
    private Integer viewCount;
 
    private String contentCategory;
    private String intro;
    private String linkAddress;
    /**
     * 打开内容
     */
    @ApiModelProperty(value = "打开内容")
    private String openContent;
    /**
     *
     */
    @ApiModelProperty(value = "内容打开方式(内部页面page、视频video、富文本text、外部链接link)")
    private String openType;
    /**
     * 图文详情
     */
    private APISpaceCaseVo[] apiSpaceCaseVos;
    /**
     * 720全景地址
     */
    private String layoutUlr;
    private String panorama;
 
    /**
     * 详情图片
     */
    private String[] contentImgList;
    /**
     * 标签
     */
    private String[] contentLabelList;
    /**
     * 详情文本
     */
    private String contentText;
    private String recommandTitle;
 
}