test #316

Merged
klaus merged 20 commits from test into main 2025-05-20 06:03:11 +00:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit a36d9f02d8 - Show all commits

View File

@ -68,6 +68,8 @@ class PointGrantLogQueryRepositoryImpl(
)
.from(pointGrantLog)
.innerJoin(pointRewardPolicy).on(pointGrantLog.policyId.eq(pointRewardPolicy.id))
.where(pointGrantLog.memberId.eq(memberId))
.orderBy(pointGrantLog.id.desc())
.fetch()
}
}

View File

@ -42,6 +42,7 @@ class UsePointQueryRepositoryImpl(
.innerJoin(order).on(usePoint.orderId.eq(order.id))
.innerJoin(audioContent).on(order.audioContent.id.eq(audioContent.id))
.where(usePoint.memberId.eq(memberId))
.orderBy(usePoint.id.desc())
.fetch()
}
}