feat(admin-charge): 관리자 충전 상세 응답에 캔 수량 필드를 추가한다
This commit is contained in:
@@ -122,6 +122,8 @@ class AdminChargeStatusQueryRepository(private val queryFactory: JPAQueryFactory
|
|||||||
member.nickname,
|
member.nickname,
|
||||||
payment.method.coalesce(""),
|
payment.method.coalesce(""),
|
||||||
payment.price,
|
payment.price,
|
||||||
|
charge.chargeCan,
|
||||||
|
charge.rewardCan,
|
||||||
currencyExpr,
|
currencyExpr,
|
||||||
formattedDate
|
formattedDate
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ data class GetChargeStatusDetailResponse @QueryProjection constructor(
|
|||||||
val nickname: String,
|
val nickname: String,
|
||||||
val method: String,
|
val method: String,
|
||||||
val amount: BigDecimal,
|
val amount: BigDecimal,
|
||||||
|
val chargeCan: Int,
|
||||||
|
val rewardCan: Int,
|
||||||
val locale: String,
|
val locale: String,
|
||||||
val datetime: String
|
val datetime: String
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user