rename: CanceledPaymentV2 -> CanceledPaymentEntityV2 클래스명 수정

This commit is contained in:
이상진 2025-08-17 21:15:17 +09:00
parent 0fc19530d1
commit 79527cb708
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import java.time.OffsetDateTime
@Entity @Entity
@Table(name = "canceled_payment1") @Table(name = "canceled_payment1")
class CanceledPaymentV2( class CanceledPaymentEntityV2(
id: Long, id: Long,
val paymentId: Long, val paymentId: Long,

View File

@ -2,4 +2,4 @@ package roomescape.payment.infrastructure.persistence.v2
import org.springframework.data.jpa.repository.JpaRepository import org.springframework.data.jpa.repository.JpaRepository
interface CanceledPaymentRepositoryV2 : JpaRepository<CanceledPaymentV2, Long> interface CanceledPaymentRepositoryV2 : JpaRepository<CanceledPaymentEntityV2, Long>