VideoVo.java
1.41 KB
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
package com.viontech.vo;
import java.io.File;
import org.springframework.web.multipart.MultipartFile;
public class VideoVo {
private String refid;
private String format;
private MultipartFile file;
private String pic_refid;
private String location_id;
private String video_path;
private File tempFile;
public String getRefid() {
return this.refid;
}
public void setRefid(String refid) {
this.refid = refid;
}
public String getFormat() {
return this.format;
}
public void setFormat(String format) {
this.format = format;
}
public MultipartFile getFile() {
return this.file;
}
public void setFile(MultipartFile file) {
this.file = file;
}
public String getPic_refid() {
return this.pic_refid;
}
public void setPic_refid(String pic_refid) {
this.pic_refid = pic_refid;
}
public String getLocation_id() {
return this.location_id;
}
public void setLocation_id(String location_id) {
this.location_id = location_id;
}
public String getVideo_path() {
return this.video_path;
}
public void setVideo_path(String video_path) {
this.video_path = video_path;
}
public File getTempFile() {
return this.tempFile;
}
public void setTempFile(File tempFile) {
this.tempFile = tempFile;
}
}