CRUDEntity
@MappedSuperclass
Base entity of a data model representing its persisted structure
Parameters
I
Id type of the data
Constructors
Link copied to clipboard
fun <I : Serializable> CRUDEntity(id: I? = null, version: Int? = null, createdAt: Instant? = null, updatedAt: Instant? = null, deletedAt: Instant? = null)