Compare commits

..

No commits in common. "2e5f750e5031df89f126b7375c199dbfa9873cef" and "20289cad108aab64d7b22c152f4118d46d5487b7" have entirely different histories.

4 changed files with 0 additions and 4 deletions

View File

@ -76,7 +76,6 @@ class AdminChargeStatusQueryRepository(private val queryFactory: JPAQueryFactory
payment.method.coalesce(""),
payment.price,
can1.price,
payment.locale.coalesce(""),
formattedDate
)
)

View File

@ -82,7 +82,6 @@ class AdminChargeStatusService(val repository: AdminChargeStatusQueryRepository)
nickname = it.nickname,
method = it.method,
amount = it.appleChargeAmount.toInt(),
locale = it.locale,
datetime = it.datetime
)
}

View File

@ -8,6 +8,5 @@ data class GetChargeStatusDetailQueryDto @QueryProjection constructor(
val method: String,
val appleChargeAmount: Double,
val pgChargeAmount: Int,
val locale: String,
val datetime: String
)

View File

@ -5,6 +5,5 @@ data class GetChargeStatusDetailResponse(
val nickname: String,
val method: String,
val amount: Int,
val locale: String,
val datetime: String
)