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
package com.yanzuoguang.cloud.vo;
import com.yanzuoguang.util.vo.BaseVo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.springframework.web.multipart.MultipartFile;
/**
* 图片上传接口请求参数,调用本接口后需要后台服务调用路径转换接口
*
* @author 颜佐光
*/
@ApiModel(description = "图片上传接口请求参数,调用本接口后需要后台服务调用路径转换接口")
public class YzgFileUploadReqVo extends BaseVo {
/**
* 文件数组
*/
@ApiModelProperty(notes = "文件数组", value = "文件数组", position = 10)
private MultipartFile[] file;
/**
* 临时文件夹名称:默认temp
*/
@ApiModelProperty(notes = "临时文件夹名称:默认temp", value = "临时文件夹名称:默认temp", position = 20)
private String folder;
/**
* 视频时获取第一帧:默认false
*/
@ApiModelProperty(notes = "视频时获取第一帧:默认false", value = "视频时获取第一帧:默认false", position = 30)
private boolean first;
public MultipartFile[] getFile() {
return file;
}
public void setFile(MultipartFile[] file) {
this.file = file;
}
public String getFolder() {
return folder;
}
public void setFolder(String folder) {
this.folder = folder;
}
public boolean isFirst() {
return first;
}
public void setFirst(boolean first) {
this.first = first;
}
}