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