1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| 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 ZTImageListResponse implements Serializable {
|
| private List<String> imageurlList;
|
| }
|
|