买家端专题
This commit is contained in:
@@ -74,4 +74,12 @@ public interface PageDataService extends IService<PageData> {
|
||||
* @return
|
||||
*/
|
||||
IPage<PageDataListVO> getPageDataList(PageVO pageVO, PageDataDTO pageDataDTO);
|
||||
|
||||
|
||||
/**
|
||||
* 获取专题信息
|
||||
* @param id id
|
||||
* @return
|
||||
*/
|
||||
PageData getSpecial(String id);
|
||||
}
|
||||
@@ -200,4 +200,9 @@ public class PageDataServiceImpl extends ServiceImpl<PageDataMapper, PageData> i
|
||||
return this.baseMapper.getPageDataList(PageUtil.initPage(pageVO), queryWrapper);
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public PageData getSpecial(String id) {
|
||||
return this.getById(id);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user