coin -> can 으로 변경

This commit is contained in:
2023-08-13 19:47:28 +09:00
parent c9970ce7ca
commit c8764be69f
11 changed files with 22 additions and 22 deletions

View File

@@ -67,7 +67,7 @@ class AudioContentCommentQueryRepositoryImpl(
"$cloudFrontHost/profile/default-profile.png"
},
comment = it.comment,
donationCoin = it.donationCan ?: 0,
donationCan = it.donationCan ?: 0,
date = date.format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a")),
replyCount = commentReplyCountByAudioContentCommentId(it.id!!)
)
@@ -131,7 +131,7 @@ class AudioContentCommentQueryRepositoryImpl(
"$cloudFrontHost/profile/default-profile.png"
},
comment = it.comment,
donationCoin = it.donationCan ?: 0,
donationCan = it.donationCan ?: 0,
date = date.format(DateTimeFormatter.ofPattern("yyyy.MM.dd E hh:mm a")),
replyCount = 0
)

View File

@@ -11,7 +11,7 @@ data class GetAudioContentCommentListItem(
val nickname: String,
val profileUrl: String,
val comment: String,
val donationCoin: Int,
val donationCan: Int,
val date: String,
val replyCount: Int
)