test #297

Merged
klaus merged 2 commits from test into main 2025-03-26 04:23:29 +00:00
1 changed files with 3 additions and 0 deletions
Showing only changes of commit 0b03ebeb70 - Show all commits

View File

@ -2,6 +2,8 @@ package kr.co.vividnext.sodalive.marketing
import java.time.LocalDateTime
import javax.persistence.Entity
import javax.persistence.EnumType
import javax.persistence.Enumerated
import javax.persistence.GeneratedValue
import javax.persistence.GenerationType
import javax.persistence.Id
@ -15,6 +17,7 @@ data class AdTrackingHistory(
val mediaGroup: String,
val pid: String,
val pidName: String,
@Enumerated(value = EnumType.STRING)
val type: AdTrackingHistoryType,
val price: Double = 0.toDouble(),
val locale: String? = null,