fix: 유저 행동 데이터 기록시 포인트 지급 조건 수정

- 지급유형(매일, 전체) 추가
- 참여가능 횟수 추가
- 주문한 콘텐츠에 댓글을 쓰면 포인트 지급을 위해 포인트 지급 이력에 orderId 추가
This commit is contained in:
2025-05-16 15:01:33 +09:00
parent 73c9a90ae3
commit f23251f5bb
7 changed files with 45 additions and 11 deletions

View File

@@ -12,5 +12,6 @@ data class PointGrantLog(
val point: Int,
@Enumerated(EnumType.STRING)
val actionType: ActionType,
val policyId: Long?
val policyId: Long?,
val orderId: Long?
) : BaseEntity()