动态相关Bug
This commit is contained in:
@@ -35,6 +35,11 @@ public interface ContentService {
|
||||
*/
|
||||
List<HyContentInfoVO> queryContentList(ContentQueryListDto dto);
|
||||
|
||||
/**
|
||||
* 查询动态列表 C 端用
|
||||
*/
|
||||
List<HyContentInfoVO> queryContentListToC(ContentQueryListDto dto);
|
||||
|
||||
/**
|
||||
* 查询动态详情
|
||||
* @param contentId
|
||||
|
||||
@@ -75,7 +75,15 @@ public class ContentServiceImpl implements ContentService {
|
||||
*/
|
||||
@Override
|
||||
public List<HyContentInfoVO> queryContentList(ContentQueryListDto dto) {
|
||||
return contentInfoMapper.queryContentListForB(dto);
|
||||
return contentInfoMapper.queryContentList(dto);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询动态列表 C 端用
|
||||
*/
|
||||
@Override
|
||||
public List<HyContentInfoVO> queryContentListToC(ContentQueryListDto dto) {
|
||||
return contentInfoMapper.queryContentListForC(dto);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user