test #348

Merged
klaus merged 4 commits from test into main 2025-10-10 19:19:47 +00:00
2 changed files with 4 additions and 2 deletions
Showing only changes of commit 976eeaa443 - Show all commits

View File

@@ -80,7 +80,7 @@ class AdminChargeStatusService(val repository: AdminChargeStatusQueryRepository)
memberId = it.memberId, memberId = it.memberId,
nickname = it.nickname, nickname = it.nickname,
method = it.method, method = it.method,
amount = it.amount.toInt(), amount = it.amount,
locale = it.locale, locale = it.locale,
datetime = it.datetime datetime = it.datetime
) )

View File

@@ -1,10 +1,12 @@
package kr.co.vividnext.sodalive.admin.charge package kr.co.vividnext.sodalive.admin.charge
import java.math.BigDecimal
data class GetChargeStatusDetailResponse( data class GetChargeStatusDetailResponse(
val memberId: Long, val memberId: Long,
val nickname: String, val nickname: String,
val method: String, val method: String,
val amount: Int, val amount: BigDecimal,
val locale: String, val locale: String,
val datetime: String val datetime: String
) )