fix: 캔 가격, Payment의 price 타입 Int, Double -> BigDecimal로 변경

This commit is contained in:
2025-10-01 20:37:53 +09:00
parent 78ff13a654
commit 0c17ea2dcd
18 changed files with 56 additions and 56 deletions

View File

@@ -1,11 +1,12 @@
package kr.co.vividnext.sodalive.can
import com.querydsl.core.annotations.QueryProjection
import java.math.BigDecimal
data class CanResponse @QueryProjection constructor(
val id: Long,
val title: String,
val can: Int,
val rewardCan: Int,
val price: Double
val price: BigDecimal
)