Compare commits
No commits in common. "2e5f750e5031df89f126b7375c199dbfa9873cef" and "20289cad108aab64d7b22c152f4118d46d5487b7" have entirely different histories.
2e5f750e50
...
20289cad10
|
@ -76,7 +76,6 @@ class AdminChargeStatusQueryRepository(private val queryFactory: JPAQueryFactory
|
|||
payment.method.coalesce(""),
|
||||
payment.price,
|
||||
can1.price,
|
||||
payment.locale.coalesce(""),
|
||||
formattedDate
|
||||
)
|
||||
)
|
||||
|
|
|
@ -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
|
||||
)
|
||||
}
|
||||
|
|
|
@ -8,6 +8,5 @@ data class GetChargeStatusDetailQueryDto @QueryProjection constructor(
|
|||
val method: String,
|
||||
val appleChargeAmount: Double,
|
||||
val pgChargeAmount: Int,
|
||||
val locale: String,
|
||||
val datetime: String
|
||||
)
|
||||
|
|
|
@ -5,6 +5,5 @@ data class GetChargeStatusDetailResponse(
|
|||
val nickname: String,
|
||||
val method: String,
|
||||
val amount: Int,
|
||||
val locale: String,
|
||||
val datetime: String
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue