fix(can): 이전 버전의 호환성을 위해 기존의 int price를 유지하도록 수정

This commit is contained in:
2025-10-03 00:02:47 +09:00
parent 0866e0972a
commit 085b217abb
3 changed files with 4 additions and 5 deletions

View File

@@ -1,14 +1,13 @@
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: BigDecimal,
val price: Int,
val currency: String,
val priceStr: String
)