package com.newvideo.domain; import java.util.List; /** * 电影合集 * * @author Administrator * */ public class VideoIntersection { private String id; private String name; private List videoList; private String createtime; public VideoIntersection(String id) { this.id = id; } public VideoIntersection() { } public String getId() { return id; } public VideoIntersection(String name, List 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 getVideoList() { return videoList; } public void setVideoList(List videoList) { this.videoList = videoList; } public String getCreatetime() { return createtime; } public void setCreatetime(String createtime) { this.createtime = createtime; } }