1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.yeshi.buwan.service.inter.recommend;
|
| import com.yeshi.buwan.domain.HomeVideo;
|
| import java.util.List;
|
| public interface HomeVideoService {
|
| public List<HomeVideo> getHomeVideoList(String homeId, String key, int page);
|
| public long getHomeVideoListCount(String homeId, String key);
|
|
| public List<HomeVideo> getHomeVideoList(String homeId, String resourceKey, List<Long> resourceIds, Boolean hasBigPicture, int page, int pageSize);
|
| public long getHomeVideoListCount(String homeId, String resourceKey, List<Long> resourceIds, Boolean hasBigPicture);
|
|
| }
|
|