admin
2021-04-22 745320cbb4edfa4fbc8f0f95483a4ee7893d5769
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
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;
    }
    
    
 
}