package com.yeshi.buwan.vo.video;
|
|
import com.yeshi.buwan.domain.VideoInfo;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class VideoListResultVO implements Serializable {
|
private List<VideoInfo> videoList;
|
private Long count;
|
|
public VideoListResultVO(List<VideoInfo> videoList, long count) {
|
super();
|
this.videoList = videoList;
|
this.count = count;
|
}
|
|
public List<VideoInfo> getVideoList() {
|
return videoList;
|
}
|
|
public void setVideoList(List<VideoInfo> videoList) {
|
this.videoList = videoList;
|
}
|
|
public long getCount() {
|
return count;
|
}
|
|
public void setCount(long count) {
|
this.count = count;
|
}
|
|
|
|
}
|