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
30
31
32
33
34
35
| package com.yeshi.fanli.service.inter.goods;
|
| import java.util.List;
|
| import com.yeshi.fanli.dto.common.CommonContentNav;
| import com.yeshi.fanli.dto.common.CommonContentResult;
| import com.yeshi.fanli.dto.common.CommonContentTypeEnum;
|
| /**
| * 商品模板内容服务
| *
| * @author Administrator
| *
| */
| public interface CommonTemplateContentService {
| /**
| * 获取导航栏
| *
| * @param type
| * @return
| */
| public List<CommonContentNav> getNavList(CommonContentTypeEnum type);
|
| /**
| * 获取内容列表
| *
| * @param type
| * @param cid
| * @param page
| * @param pageSize
| * @return
| */
| public CommonContentResult getContentList(CommonContentTypeEnum type, String cid, int page, int pageSize);
|
| }
|
|