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
| package com.yeshi.fanli.service.inter.goods;
|
| import java.util.List;
|
| import com.yeshi.fanli.dto.common.CommonContentNav;
| import com.yeshi.fanli.dto.common.PDDCommonContentTypeEnum;
| import com.yeshi.fanli.dto.pdd.PDDGoodsResult;
|
| /**
| * 商品模板内容服务
| *
| * @author Administrator
| *
| */
| public interface PDDCommonTemplateContentService {
|
| /**
| * 商品信息
| * @param type
| * @param cid
| * @param page
| * @param pageSize
| * @return
| */
| public PDDGoodsResult getContentList(PDDCommonContentTypeEnum type, String cid, int page, int pageSize);
|
| /**
| * 分类
| * @param type
| * @return
| */
| public List<CommonContentNav> getNavList(PDDCommonContentTypeEnum type);
|
| }
|
|