fix: 유저 행동 데이터

- commentId -> contentCommentId 로 변경
This commit is contained in:
Klaus 2025-05-19 15:17:44 +09:00
parent aa23d6d50f
commit f36010fefa
1 changed files with 1 additions and 1 deletions

View File

@ -10,5 +10,5 @@ data class UserActionLog(
val memberId: Long,
@Enumerated(EnumType.STRING)
val actionType: ActionType,
val commentId: Long? = null
val contentCommentId: Long? = null
) : BaseEntity()