payverse 적용 #344

Merged
klaus merged 44 commits from test into main 2025-10-10 07:44:07 +00:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 3c7ba669e2 - Show all commits

View File

@@ -26,6 +26,7 @@ data class Payment(
var receiptId: String? = null var receiptId: String? = null
var method: String? = null var method: String? = null
@Column(precision = 10, scale = 4, nullable = false)
var price: BigDecimal = 0.toBigDecimal() var price: BigDecimal = 0.toBigDecimal()
var locale: String? = null var locale: String? = null
var orderId: String? = null var orderId: String? = null

View File

@@ -2,6 +2,7 @@ package kr.co.vividnext.sodalive.marketing
import java.math.BigDecimal import java.math.BigDecimal
import java.time.LocalDateTime import java.time.LocalDateTime
import javax.persistence.Column
import javax.persistence.Entity import javax.persistence.Entity
import javax.persistence.EnumType import javax.persistence.EnumType
import javax.persistence.Enumerated import javax.persistence.Enumerated
@@ -20,6 +21,7 @@ data class AdTrackingHistory(
val pidName: String, val pidName: String,
@Enumerated(value = EnumType.STRING) @Enumerated(value = EnumType.STRING)
val type: AdTrackingHistoryType, val type: AdTrackingHistoryType,
@Column(precision = 10, scale = 4, nullable = false)
val price: BigDecimal = 0.toBigDecimal(), val price: BigDecimal = 0.toBigDecimal(),
val locale: String? = null, val locale: String? = null,
val memberId: Long, val memberId: Long,