Files
sodalive-backend-spring-boot/src/main/kotlin/kr/co/vividnext/sodalive/can/CanResponse.kt

12 lines
249 B
Kotlin

package kr.co.vividnext.sodalive.can
import com.querydsl.core.annotations.QueryProjection
data class CanResponse @QueryProjection constructor(
val id: Long,
val title: String,
val can: Int,
val rewardCan: Int,
val price: Int
)