fix: 유저 포인트 조회시 유효기간을 기준으로 오름차순 정렬
This commit is contained in:
parent
d3ec13e6c0
commit
fcbd809691
|
@ -24,6 +24,7 @@ class MemberPointQueryRepositoryImpl(
|
||||||
memberPoint.memberId.eq(memberId),
|
memberPoint.memberId.eq(memberId),
|
||||||
memberPoint.expiresAt.goe(expiresAt)
|
memberPoint.expiresAt.goe(expiresAt)
|
||||||
)
|
)
|
||||||
|
.orderBy(memberPoint.expiresAt.asc())
|
||||||
.fetch()
|
.fetch()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue