15 lines
377 B
Kotlin
15 lines
377 B
Kotlin
package kr.co.vividnext.sodalive.useraction
|
|
|
|
import kr.co.vividnext.sodalive.common.BaseEntity
|
|
import javax.persistence.Entity
|
|
import javax.persistence.EnumType
|
|
import javax.persistence.Enumerated
|
|
|
|
@Entity
|
|
data class UserActionLog(
|
|
val memberId: Long,
|
|
@Enumerated(EnumType.STRING)
|
|
val actionType: ActionType,
|
|
val contentCommentId: Long? = null
|
|
) : BaseEntity()
|