getting started
This commit is contained in:
@@ -0,0 +1,63 @@
|
||||
package com.android.trisolarisserver.models.booking
|
||||
|
||||
import com.android.trisolarisserver.models.property.AppUser
|
||||
import com.android.trisolarisserver.models.property.Property
|
||||
import jakarta.persistence.*
|
||||
import java.time.OffsetDateTime
|
||||
import java.util.UUID
|
||||
|
||||
@Entity
|
||||
@Table(
|
||||
name = "booking",
|
||||
uniqueConstraints = [
|
||||
UniqueConstraint(columnNames = ["property_id", "source", "source_booking_id"])
|
||||
]
|
||||
)
|
||||
class Booking(
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(columnDefinition = "uuid")
|
||||
val id: UUID? = null,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "property_id", nullable = false)
|
||||
var property: Property,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "primary_guest_id")
|
||||
var primaryGuest: Guest? = null,
|
||||
|
||||
@Enumerated(EnumType.STRING)
|
||||
@Column(nullable = false)
|
||||
var status: BookingStatus = BookingStatus.OPEN,
|
||||
|
||||
@Column(nullable = false)
|
||||
var source: String = "WALKIN", // WALKIN, WEBSITE, MMT, AGENT
|
||||
|
||||
@Column(name = "source_booking_id")
|
||||
var sourceBookingId: String? = null,
|
||||
|
||||
@Column(name = "checkin_at", columnDefinition = "timestamptz")
|
||||
var checkinAt: OffsetDateTime? = null,
|
||||
|
||||
@Column(name = "checkout_at", columnDefinition = "timestamptz")
|
||||
var checkoutAt: OffsetDateTime? = null,
|
||||
|
||||
@Column(name = "expected_checkin_at", columnDefinition = "timestamptz")
|
||||
var expectedCheckinAt: OffsetDateTime? = null,
|
||||
|
||||
@Column(name = "expected_checkout_at", columnDefinition = "timestamptz")
|
||||
var expectedCheckoutAt: OffsetDateTime? = null,
|
||||
|
||||
var notes: String? = null,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "created_by")
|
||||
var createdBy: AppUser? = null,
|
||||
|
||||
@Column(name = "created_at", columnDefinition = "timestamptz")
|
||||
val createdAt: OffsetDateTime = OffsetDateTime.now(),
|
||||
|
||||
@Column(name = "updated_at", columnDefinition = "timestamptz")
|
||||
var updatedAt: OffsetDateTime = OffsetDateTime.now()
|
||||
)
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.android.trisolarisserver.models.booking
|
||||
|
||||
enum class BookingStatus {
|
||||
OPEN,
|
||||
CHECKED_IN,
|
||||
CHECKED_OUT,
|
||||
CANCELLED,
|
||||
NO_SHOW
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.android.trisolarisserver.models.booking
|
||||
|
||||
import com.android.trisolarisserver.models.property.Organization
|
||||
import jakarta.persistence.*
|
||||
import java.time.OffsetDateTime
|
||||
import java.util.UUID
|
||||
|
||||
@Entity
|
||||
@Table(
|
||||
name = "guest",
|
||||
uniqueConstraints = [UniqueConstraint(columnNames = ["org_id", "phone_e164"])]
|
||||
)
|
||||
class Guest(
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(columnDefinition = "uuid")
|
||||
val id: UUID? = null,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "org_id", nullable = false)
|
||||
var org: Organization,
|
||||
|
||||
@Column(name = "phone_e164")
|
||||
var phoneE164: String? = null,
|
||||
|
||||
var name: String? = null,
|
||||
var nationality: String? = null,
|
||||
|
||||
@Column(name = "address_text")
|
||||
var addressText: String? = null,
|
||||
|
||||
@Column(name = "created_at", columnDefinition = "timestamptz")
|
||||
val createdAt: OffsetDateTime = OffsetDateTime.now(),
|
||||
|
||||
@Column(name = "updated_at", columnDefinition = "timestamptz")
|
||||
var updatedAt: OffsetDateTime = OffsetDateTime.now()
|
||||
)
|
||||
@@ -0,0 +1,35 @@
|
||||
package com.android.trisolarisserver.models.property
|
||||
|
||||
import jakarta.persistence.*
|
||||
import java.time.OffsetDateTime
|
||||
import java.util.UUID
|
||||
|
||||
@Entity
|
||||
@Table(
|
||||
name = "app_user",
|
||||
uniqueConstraints = [UniqueConstraint(columnNames = ["firebase_uid"])]
|
||||
)
|
||||
class AppUser(
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(columnDefinition = "uuid")
|
||||
val id: UUID? = null,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "org_id", nullable = false)
|
||||
var org: Organization,
|
||||
|
||||
@Column(name = "firebase_uid")
|
||||
var firebaseUid: String? = null, // optional if using firebase
|
||||
|
||||
@Column(name = "phone_e164")
|
||||
var phoneE164: String? = null,
|
||||
|
||||
var name: String? = null,
|
||||
|
||||
@Column(name = "is_disabled", nullable = false)
|
||||
var disabled: Boolean = false,
|
||||
|
||||
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
|
||||
val createdAt: OffsetDateTime = OffsetDateTime.now()
|
||||
)
|
||||
@@ -0,0 +1,18 @@
|
||||
package com.android.trisolarisserver.models.property
|
||||
|
||||
import jakarta.persistence.*
|
||||
import java.time.OffsetDateTime
|
||||
import java.util.*
|
||||
|
||||
@Entity
|
||||
@Table(name = "organization")
|
||||
class Organization {
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(columnDefinition = "uuid")
|
||||
val id: UUID? = null
|
||||
@Column(nullable = false)
|
||||
var name: String? = null
|
||||
|
||||
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
|
||||
val createdAt: OffsetDateTime = OffsetDateTime.now() }
|
||||
@@ -0,0 +1,39 @@
|
||||
package com.android.trisolarisserver.models.property
|
||||
|
||||
import jakarta.persistence.*
|
||||
import java.time.OffsetDateTime
|
||||
import java.util.UUID
|
||||
|
||||
@Entity
|
||||
@Table(
|
||||
name = "property",
|
||||
uniqueConstraints = [UniqueConstraint(columnNames = ["org_id", "code"])]
|
||||
)
|
||||
class Property(
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(columnDefinition = "uuid")
|
||||
val id: UUID? = null,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "org_id", nullable = false)
|
||||
var org: Organization,
|
||||
|
||||
@Column(nullable = false)
|
||||
var code: String, // "TRI-VNS"
|
||||
|
||||
@Column(nullable = false)
|
||||
var name: String, // "Hotel Trisolaris Varanasi"
|
||||
|
||||
@Column(nullable = false)
|
||||
var timezone: String = "Asia/Kolkata",
|
||||
|
||||
@Column(nullable = false)
|
||||
var currency: String = "INR",
|
||||
|
||||
@Column(name = "is_active", nullable = false)
|
||||
var active: Boolean = true,
|
||||
|
||||
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
|
||||
val createdAt: OffsetDateTime = OffsetDateTime.now()
|
||||
)
|
||||
@@ -0,0 +1,43 @@
|
||||
package com.android.trisolarisserver.models.property
|
||||
|
||||
import jakarta.persistence.*
|
||||
import java.io.Serializable
|
||||
import java.util.UUID
|
||||
|
||||
@Entity
|
||||
@Table(name = "property_user")
|
||||
class PropertyUser(
|
||||
|
||||
@EmbeddedId
|
||||
val id: PropertyUserId = PropertyUserId(),
|
||||
|
||||
@MapsId("propertyId")
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "property_id")
|
||||
var property: Property,
|
||||
|
||||
@MapsId("userId")
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "user_id")
|
||||
var user: AppUser,
|
||||
|
||||
@ElementCollection(fetch = FetchType.EAGER)
|
||||
@CollectionTable(
|
||||
name = "property_user_role",
|
||||
joinColumns = [
|
||||
JoinColumn(name = "property_id"),
|
||||
JoinColumn(name = "user_id")
|
||||
]
|
||||
)
|
||||
@Column(name = "role")
|
||||
var roles: MutableSet<Role> = mutableSetOf()
|
||||
)
|
||||
|
||||
@Embeddable
|
||||
class PropertyUserId(
|
||||
@Column(name = "property_id", columnDefinition = "uuid")
|
||||
var propertyId: UUID? = null,
|
||||
|
||||
@Column(name = "user_id", columnDefinition = "uuid")
|
||||
var userId: UUID? = null
|
||||
) : Serializable
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.android.trisolarisserver.models.property
|
||||
|
||||
enum class Role {
|
||||
ADMIN, MANAGER, STAFF, HOUSEKEEPING, FINANCE,GUIDE,SUPERVISOR,AGENT
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
package com.android.trisolarisserver.models.room
|
||||
|
||||
import com.android.trisolarisserver.models.property.Property
|
||||
import jakarta.persistence.*
|
||||
import java.util.UUID
|
||||
|
||||
@Entity
|
||||
@Table(
|
||||
name = "room",
|
||||
uniqueConstraints = [UniqueConstraint(columnNames = ["property_id", "room_number"])]
|
||||
)
|
||||
class Room(
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(columnDefinition = "uuid")
|
||||
val id: UUID? = null,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "property_id", nullable = false)
|
||||
var property: Property,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "room_type_id", nullable = false)
|
||||
var roomType: RoomType,
|
||||
|
||||
@Column(name = "room_number", nullable = false)
|
||||
var roomNumber: Int,
|
||||
|
||||
var floor: Int? = null,
|
||||
|
||||
@Column(name = "has_nfc", nullable = false)
|
||||
var hasNfc: Boolean = false,
|
||||
|
||||
@Column(name = "is_active", nullable = false)
|
||||
var active: Boolean = true,
|
||||
|
||||
@Column(name = "maintenance", nullable = false)
|
||||
var maintenance: Boolean = false,
|
||||
|
||||
var notes: String? = null
|
||||
)
|
||||
@@ -0,0 +1,42 @@
|
||||
package com.android.trisolarisserver.models.room
|
||||
|
||||
import com.android.trisolarisserver.models.booking.Booking
|
||||
import com.android.trisolarisserver.models.property.AppUser
|
||||
import com.android.trisolarisserver.models.property.Property
|
||||
import jakarta.persistence.*
|
||||
import java.time.OffsetDateTime
|
||||
import java.util.UUID
|
||||
|
||||
@Entity
|
||||
@Table(name = "room_stay")
|
||||
class RoomStay(
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(columnDefinition = "uuid")
|
||||
val id: UUID? = null,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "property_id", nullable = false)
|
||||
var property: Property,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "booking_id", nullable = false)
|
||||
var booking: Booking,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "room_id", nullable = false)
|
||||
var room: Room,
|
||||
|
||||
@Column(name = "from_at", nullable = false, columnDefinition = "timestamptz")
|
||||
var fromAt: OffsetDateTime,
|
||||
|
||||
@Column(name = "to_at", columnDefinition = "timestamptz")
|
||||
var toAt: OffsetDateTime? = null, // null = active
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "created_by")
|
||||
var createdBy: AppUser? = null,
|
||||
|
||||
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
|
||||
val createdAt: OffsetDateTime = OffsetDateTime.now()
|
||||
)
|
||||
@@ -0,0 +1,37 @@
|
||||
package com.android.trisolarisserver.models.room
|
||||
|
||||
import com.android.trisolarisserver.models.property.Property
|
||||
import jakarta.persistence.*
|
||||
import java.time.OffsetDateTime
|
||||
import java.util.UUID
|
||||
|
||||
@Entity
|
||||
@Table(
|
||||
name = "room_type",
|
||||
uniqueConstraints = [UniqueConstraint(columnNames = ["property_id", "code"])]
|
||||
)
|
||||
class RoomType(
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(columnDefinition = "uuid")
|
||||
val id: UUID? = null,
|
||||
|
||||
@ManyToOne(fetch = FetchType.LAZY, optional = false)
|
||||
@JoinColumn(name = "property_id", nullable = false)
|
||||
var property: Property,
|
||||
|
||||
@Column(nullable = false)
|
||||
var code: String, // DLX_DBL
|
||||
|
||||
@Column(nullable = false)
|
||||
var name: String, // Deluxe Double
|
||||
|
||||
@Column(name = "base_occupancy", nullable = false)
|
||||
var baseOccupancy: Int = 2,
|
||||
|
||||
@Column(name = "max_occupancy", nullable = false)
|
||||
var maxOccupancy: Int = 3,
|
||||
|
||||
@Column(name = "created_at", nullable = false, columnDefinition = "timestamptz")
|
||||
val createdAt: OffsetDateTime = OffsetDateTime.now()
|
||||
)
|
||||
Reference in New Issue
Block a user