Add room-stay void/checkout controls and audit logs
All checks were successful
build-and-deploy / build-deploy (push) Successful in 39s

This commit is contained in:
androidlover5842
2026-02-02 08:19:40 +05:30
parent 240e8fca25
commit e77ae6396e
9 changed files with 284 additions and 3 deletions

View File

@@ -33,6 +33,9 @@ class RoomStay(
@Column(name = "to_at", columnDefinition = "timestamptz")
var toAt: OffsetDateTime? = null, // null = active
@Column(name = "is_voided", nullable = false)
var isVoided: Boolean = false,
@Enumerated(EnumType.STRING)
@Column(name = "rate_source")
var rateSource: RateSource? = null,