Skip to content

Commit

Permalink
feat: 좋아요 도메인 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
van1164 committed Jun 2, 2024
1 parent 37cde08 commit fcb8324
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions util/src/main/kotlin/com/van1164/common/domain/VideoLike.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.van1164.common.domain

import org.springframework.data.annotation.Id
import org.springframework.data.relational.core.mapping.Table

@Table("video_like")
data class VideoLike(

val videoId : Long,

val userId : String,

@Id
val id : Long? = null
)

0 comments on commit fcb8324

Please sign in to comment.