package com.yeshi.buwan.domain;
|
|
import java.util.List;
|
|
/**
|
* 电影合集
|
*
|
* @author Administrator
|
*
|
*/
|
public class VideoIntersection {
|
private String id;
|
private String name;
|
private List<VideoInfo> videoList;
|
private String createtime;
|
|
public VideoIntersection(String id) {
|
this.id = id;
|
}
|
|
public VideoIntersection() {
|
}
|
|
public String getId() {
|
return id;
|
}
|
|
public VideoIntersection(String name, List<VideoInfo> videoList,
|
String createtime) {
|
super();
|
this.name = name;
|
this.videoList = videoList;
|
this.createtime = createtime;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public List<VideoInfo> getVideoList() {
|
return videoList;
|
}
|
|
public void setVideoList(List<VideoInfo> videoList) {
|
this.videoList = videoList;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
}
|