[#35] 결제 스키마 재정의 & 예약 조회 페이지 개선 #36

Merged
pricelees merged 37 commits from refactor/#35 into main 2025-08-22 06:43:16 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 79527cb708 - Show all commits

View File

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

View File

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