parent
8b10e0e770
commit
a3e717f2f7
|
@ -2,6 +2,8 @@ package kr.co.vividnext.sodalive.audition
|
|||
|
||||
import kr.co.vividnext.sodalive.common.BaseEntity
|
||||
import javax.persistence.Entity
|
||||
import javax.persistence.EnumType
|
||||
import javax.persistence.Enumerated
|
||||
import javax.persistence.FetchType
|
||||
import javax.persistence.JoinColumn
|
||||
import javax.persistence.ManyToOne
|
||||
|
@ -11,6 +13,7 @@ data class AuditionRole(
|
|||
var name: String,
|
||||
// 오디션 대본 URL
|
||||
var auditionScriptUrl: String? = null,
|
||||
@Enumerated(value = EnumType.STRING)
|
||||
var status: AuditionStatus = AuditionStatus.IN_PROGRESS
|
||||
) : BaseEntity() {
|
||||
var isActive: Boolean = true
|
||||
|
|
Loading…
Reference in New Issue