Video.java
1.71 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
77
78
79
80
package cn.bxe.updatevideo.model.original;
public class Video {
private Integer id;
private Integer chapterID;
private Integer moduleID;
private String videoName;
private String url;
private String timeDuration;
private Integer sortIndex;
@Override
public String toString() {
return "Video{" +
"id=" + id +
", chapterID=" + chapterID +
", moduleID=" + moduleID +
", videoName='" + videoName + '\'' +
", url='" + url + '\'' +
", timeDuration='" + timeDuration + '\'' +
", sortIndex=" + sortIndex +
'}';
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getChapterID() {
return chapterID;
}
public void setChapterID(Integer chapterID) {
this.chapterID = chapterID;
}
public Integer getModuleID() {
return moduleID;
}
public void setModuleID(Integer moduleID) {
this.moduleID = moduleID;
}
public String getVideoName() {
return videoName;
}
public void setVideoName(String videoName) {
this.videoName = videoName;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getTimeDuration() {
return timeDuration;
}
public void setTimeDuration(String timeDuration) {
this.timeDuration = timeDuration;
}
public Integer getSortIndex() {
return sortIndex;
}
public void setSortIndex(Integer sortIndex) {
this.sortIndex = sortIndex;
}
}