feat: 쿠폰 사용 - 포인트 쿠폰이면 포인트 충전 되도록 로직 수정

This commit is contained in:
2025-06-09 15:16:11 +09:00
parent e3c33c71a0
commit 54c0322398
2 changed files with 54 additions and 13 deletions

View File

@@ -13,5 +13,6 @@ data class PointGrantLog(
@Enumerated(EnumType.STRING)
val actionType: ActionType,
val policyId: Long?,
val orderId: Long?
val orderId: Long?,
val couponName: String? = null
) : BaseEntity()