Merge branch 'BE/userinfo' into 'backend'
feat: qna 페이지네이션 수정 See merge request s11-webmobile1-sub2/S11P12A701!160
This commit is contained in:
commit
47645e86a8
@ -13,7 +13,7 @@ import java.util.List;
|
|||||||
@Repository
|
@Repository
|
||||||
public interface QnaRepository extends JpaRepository<Qna, Long> {
|
public interface QnaRepository extends JpaRepository<Qna, Long> {
|
||||||
|
|
||||||
List<Qna> findByLectureId(Long lecturerId);
|
//List<Qna> findByLectureId(Long lecturerId);
|
||||||
|
|
||||||
@Query("SELECT q FROM Qna q WHERE q.lecture.id = :lectureId ORDER BY q.createdAt DESC")
|
@Query("SELECT q FROM Qna q WHERE q.lecture.id = :lectureId ORDER BY q.createdAt DESC")
|
||||||
Page<Qna> findByLectureId(Long lectureId, Pageable pageable);
|
Page<Qna> findByLectureId(Long lectureId, Pageable pageable);
|
||||||
|
Loading…
Reference in New Issue
Block a user