From 3ea46a013c6976c6eb098581af863d32506940d0 Mon Sep 17 00:00:00 2001 From: inpink <108166692+inpink@users.noreply.github.com> Date: Sun, 5 Oct 2025 18:58:14 +0900 Subject: [PATCH] =?UTF-8?q?Refactor:=20=EB=B6=88=ED=95=84=EC=9A=94?= =?UTF-8?q?=ED=95=9C=20public=20=EC=A0=91=EA=B7=BC=EC=A0=9C=EC=96=B4?= =?UTF-8?q?=EC=9E=90=20=EB=AA=85=EC=8B=9C=EB=A5=BC=20=EC=A0=9C=EA=B1=B0?= =?UTF-8?q?=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../kotlin/app/payment/voucher/domain/Voucher.kt | 12 ++++++------ .../app/payment/voucher/domain/VoucherContent.kt | 16 ++++++++-------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/Voucher.kt b/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/Voucher.kt index 64a9629..7fbf762 100644 --- a/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/Voucher.kt +++ b/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/Voucher.kt @@ -3,10 +3,10 @@ package app.payment.voucher.domain import java.time.OffsetDateTime class Voucher( - public val id: Long, - public val type: VoucherType, - public val consumptionType: ConsumptionType, - public var status: VoucherStatus, - public val createdAt: OffsetDateTime, - public var updatedAt: OffsetDateTime, + val id: Long, + val type: VoucherType, + val consumptionType: ConsumptionType, + var status: VoucherStatus, + val createdAt: OffsetDateTime, + var updatedAt: OffsetDateTime, ) diff --git a/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/VoucherContent.kt b/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/VoucherContent.kt index 2761b17..0561e7c 100644 --- a/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/VoucherContent.kt +++ b/payment/voucher/domain/src/main/kotlin/app/payment/voucher/domain/VoucherContent.kt @@ -3,12 +3,12 @@ package app.payment.voucher.domain import java.time.OffsetDateTime class VoucherContent( - public val id: Long, - public val voucherId: Long, - public val version: Int, - public val title: String, - public val description: String, - public val activeFrom: OffsetDateTime, - public val activeUntil: OffsetDateTime, - public val createdAt: OffsetDateTime, + val id: Long, + val voucherId: Long, + val version: Int, + val title: String, + val description: String, + val activeFrom: OffsetDateTime, + val activeUntil: OffsetDateTime, + val createdAt: OffsetDateTime, )