Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)