Allow room upsert by roomTypeCode
All checks were successful
build-and-deploy / build-deploy (push) Successful in 27s

This commit is contained in:
androidlover5842
2026-01-27 01:13:59 +05:30
parent 0efce2f900
commit ce75e9536c
3 changed files with 19 additions and 5 deletions

View File

@@ -52,7 +52,8 @@ enum class RoomBoardStatus {
data class RoomUpsertRequest(
val roomNumber: Int,
val floor: Int?,
val roomTypeId: UUID,
val roomTypeId: UUID? = null,
val roomTypeCode: String? = null,
val hasNfc: Boolean,
val active: Boolean,
val maintenance: Boolean,