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