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
package com.yeshi.buwan.dto.search;
 
import java.util.List;
 
public class SolrResultDTO {
    private List videoList;
    private int totalCount;
 
    public SolrResultDTO(List videoList, int totalCount) {
        this.videoList = videoList;
        this.totalCount = totalCount;
    }
 
    public List getVideoList() {
        return videoList;
    }
 
    public void setVideoList(List videoList) {
        this.videoList = videoList;
    }
 
    public int getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(int totalCount) {
        this.totalCount = totalCount;
    }
}