BoardSearch
페이지 정보
본문
package web.repository;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import web.domain.Board;
import web.dto.BoardListAllDTO;
import web.dto.BoardListReplyCountDTO;
public interface BoardSearch {
Page<Board> search1(Pageable pageable);
Page<Board> searchAll(String[] types, String keyword, Pageable pageable);
Page<BoardListReplyCountDTO> searchWithReplyCount(String[] types, String keyword, Pageable pageable);
//Page<BoardListReplyCountDTO> searchWithAll(String[] types, String keyword, Pageable pageable);
Page<BoardListAllDTO> searchWithAll(String[] types, String keyword, Pageable pageable);
}
- 이전글● Querydsl의 튜플 처리 24.07.01
- 다음글BoardSearchImpl ① 24.07.01
댓글목록
등록된 댓글이 없습니다.