package com.doumee.service.business;
|
|
import com.doumee.biz.zbom.model.zhongtai.ZTCatalogListRequest;
|
import com.doumee.biz.zbom.model.zhongtai.ZTContentListRequest;
|
import com.doumee.biz.zbom.model.zhongtai.response.*;
|
|
import java.util.List;
|
|
/**
|
* 用户行为数据信息表Service定义
|
* @author 江蹄蹄
|
* @date 2024/07/04 14:40
|
*/
|
public interface GetZhongTaiDataService {
|
|
/**
|
* 分类数据
|
* @param param
|
* @return
|
*/
|
List<ZTCatalogInfoResponse> getCatalogList(ZTCatalogListRequest param);
|
|
/**
|
* 标签数据
|
* @param param
|
* @return
|
*/
|
List<ZTTagInfoResponse> getCataLogTagList(ZTCatalogListRequest param);
|
|
/**
|
* 父子级分类数据 分类+标签
|
* @param ztCatalogListRequest
|
* @return
|
*/
|
List<ZTCatalogInfoResponse> getZTCatalogInfoResponse(ZTCatalogListRequest ztCatalogListRequest);
|
|
/**
|
* 内容分页
|
* @param ztContentListRequest
|
* @return
|
*/
|
ZTBasePageResponse<ZTContentListResponse> pageContentList(ZTContentListRequest ztContentListRequest);
|
|
/**
|
* 内容详情
|
* @param id 业务主键
|
* @param userType 用户类型
|
* @param userId 用户主键
|
* @return
|
*/
|
ZTContentInfoResponse getContentInfo(String id, String userType, Long userId);
|
}
|