fix: 유저 포인트 조회시 유효기간을 기준으로 오름차순 정렬

This commit is contained in:
2025-05-20 16:56:34 +09:00
parent d3ec13e6c0
commit fcbd809691

View File

@@ -24,6 +24,7 @@ class MemberPointQueryRepositoryImpl(
memberPoint.memberId.eq(memberId),
memberPoint.expiresAt.goe(expiresAt)
)
.orderBy(memberPoint.expiresAt.asc())
.fetch()
}
}