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