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