jiangping
2024-07-24 b26da15df0f71a11e7d04abd0aa2284d8b8cdef0
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
package com.doumee.biz.zbom.model.zhongtai.response;
 
import com.doumee.biz.zbom.model.zhongtai.APISpaceCaseVo;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
 
/**
 * 案例详情返回
 */
@Data
public class ZTCaseInfoResponse extends ZTImageListResponse implements Serializable {
    private APISpaceCaseVo[] apiSpaceCaseVos;
 
    private List<String> imageurlList;
    private String caseInfo;
    /**
     * 收藏量
     */
    private Integer collectCount;
    /**
     * 主图
     */
    private String coverImage;
    /**
     * id
     */
    private String id;
    /**
     * 是否收藏 true:收藏  false:未收藏
     */
    private Boolean isCollection;
    private String layoutUlr;
    private String panorama;
    /**
     * 发布日期
     */
    private String publishDt;
    /**
     * 标题
     */
    private String title;
    /**
     * 浏览量
     */
    private Integer viewCount;
 
}