搜索、小助手推荐位

This commit is contained in:
2025-11-18 11:48:01 +08:00
parent 2ce3684711
commit 049b6f2cf3
18 changed files with 1280 additions and 23 deletions

View File

@@ -2,9 +2,11 @@ package org.xyzh.api.news.resource;
import org.xyzh.common.core.domain.ResultDomain;
import org.xyzh.common.core.page.PageParam;
import org.xyzh.common.core.page.PageRequest;
import org.xyzh.common.dto.resource.TbResource;
import org.xyzh.common.dto.usercenter.TbUserCollection;
import org.xyzh.common.vo.ResourceVO;
import org.xyzh.common.vo.TaskItemVO;
import java.util.List;
@@ -186,4 +188,12 @@ public interface ResourceService {
ResultDomain<Integer> getResourceCount(TbResource filter);
/**
* @description 搜索资源
* @param filter 过滤条件
* @return ResultDomain<TaskItemVO> 搜索结果
* @author yslg
* @since 2025-10-15
*/
ResultDomain<TaskItemVO> searchItem(PageRequest<TbResource> filter);
}