getting started
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user