VideoRelateRootVO.java
955 字节
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
package com.skua.modules.video.vo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.experimental.Accessors;
@Accessors(chain = true)
@ApiModel(value="t_video_relate_root对象", description="视频信息")
public class VideoRelateRootVO {
@ApiModelProperty(value = "id")
private String id;
@ApiModelProperty(value = "父id")
private String videoRootId;
@ApiModelProperty(value = "视频根目录名称")
private String realname;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getVideoRootId() {
return videoRootId;
}
public void setVideoRootId(String videoRootId) {
this.videoRootId = videoRootId;
}
public String getRealname() {
return realname;
}
public void setRealname(String realname) {
this.realname = realname;
}
}