买家端专题

This commit is contained in:
chc
2022-10-11 17:13:12 +08:00
parent 55270548c7
commit cb7814cbd6
3 changed files with 56 additions and 5 deletions

View File

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

View File

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