1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ycl.vo.casePool;
|
| import com.ycl.entity.common.ImageResources;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.util.List;
|
| /**
| * <p>
| * 案卷图片 类
| * </p>
| *
| * @author mg
| * @since 2022-09-29
| */
| @Data
| public class FilesPictureVo {
| /**
| * 图片列表
| */
| @ApiModelProperty(value = "图片列表",dataType = "ImageResources")
| private List<ImageResources> imageResources;
| }
|
|