temp: 캔 가격 타입 Int -> Double로 변경

This commit is contained in:
2025-10-01 16:07:34 +09:00
parent 863c285049
commit 78ff13a654
9 changed files with 11 additions and 11 deletions

View File

@@ -10,7 +10,7 @@ data class Can(
var title: String,
var can: Int,
var rewardCan: Int,
var price: Int,
var price: Double,
@Enumerated(value = EnumType.STRING)
var status: CanStatus
) : BaseEntity()