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

This commit is contained in:
Klaus 2025-05-20 16:56:34 +09:00
parent d3ec13e6c0
commit fcbd809691
1 changed files with 1 additions and 0 deletions

View File

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