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;
|
}
|
}
|