refactor(admin-charge): QGetChargeStatusQueryDto의 currency가 null이 되지 않도록 coalesce("") 사용

This commit is contained in:
2025-10-11 04:39:15 +09:00
parent 976eeaa443
commit b5f66603bd

View File

@@ -36,7 +36,7 @@ class AdminChargeStatusQueryRepository(private val queryFactory: JPAQueryFactory
payment.price.sum(),
payment.id.count(),
payment.paymentGateway,
currency
currency.coalesce("")
)
)
.from(payment)